From 12442c564d1aeee156e0a404eaf50aa383ae29e5 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 24 Oct 2023 13:15:33 -0500 Subject: [PATCH 001/111] new page --- README.md | 2 +- components/DiagContext.module.css | 12 ++++++++++ components/DiagContext.tsx | 15 ++++++++++++ components/DiagSidebar.module.css | 8 +++++++ components/DiagSidebar.tsx | 28 ++++++++++++++++++++++ components/Hypothesis.module.css | 14 +++++++++++ components/Hypothesis.tsx | 26 +++++++++++++++++++++ pages/diagnosis.module.css | 23 ++++++++++++++++++ pages/diagnosis.tsx | 39 +++++++++++++++++++++++++++++++ 9 files changed, 166 insertions(+), 1 deletion(-) create mode 100644 components/DiagContext.module.css create mode 100644 components/DiagContext.tsx create mode 100644 components/DiagSidebar.module.css create mode 100644 components/DiagSidebar.tsx create mode 100644 components/Hypothesis.module.css create mode 100644 components/Hypothesis.tsx create mode 100644 pages/diagnosis.module.css create mode 100644 pages/diagnosis.tsx diff --git a/README.md b/README.md index ce2c30b..caea136 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,4 @@ Install packages using `yarn install`. ## Development -Start a development server using `yarn dev` and navigate to `localhost:3000`. Changes in code will automatically cause the website to be re-built and update the browser. +Start a development server using `yarn dev` and navigate to `localhost:8080`. Changes in code will automatically cause the website to be re-built and update the browser. diff --git a/components/DiagContext.module.css b/components/DiagContext.module.css new file mode 100644 index 0000000..a453997 --- /dev/null +++ b/components/DiagContext.module.css @@ -0,0 +1,12 @@ +.container{ + width: 100%; + height: 100%; +} + +.context_space { + padding: 20px; + background-color: white; + width: 100%; + height: 95%; + box-sizing: border-box; +} \ No newline at end of file diff --git a/components/DiagContext.tsx b/components/DiagContext.tsx new file mode 100644 index 0000000..c5574ec --- /dev/null +++ b/components/DiagContext.tsx @@ -0,0 +1,15 @@ +import React from 'react'; +import styles from './DiagContext.module.css'; + +const Context: React.FC = () => { + return ( +
+

Context

+
+ {/* Content for context */} +
+
+ ); +}; + +export default Context; \ No newline at end of file diff --git a/components/DiagSidebar.module.css b/components/DiagSidebar.module.css new file mode 100644 index 0000000..0c9ca9f --- /dev/null +++ b/components/DiagSidebar.module.css @@ -0,0 +1,8 @@ +.problem_textbox { + width: 100%; + height: 100%; + margin: 10px 0; + padding: 10px; + box-sizing: border-box; + } + \ No newline at end of file diff --git a/components/DiagSidebar.tsx b/components/DiagSidebar.tsx new file mode 100644 index 0000000..34061b9 --- /dev/null +++ b/components/DiagSidebar.tsx @@ -0,0 +1,28 @@ +import React from 'react'; +import styles from './DiagSidebar.module.css'; + +interface SidebarProps { + content: string; + setContent: (content: string) => void; + title: string; +} + +const Sidebar: React.FC = ({ content, setContent, title }) => { + const handleContentChange = (event: React.ChangeEvent) => { + setContent(event.target.value); + }; + + return ( +
+

{title}

+

Detector Debrief

+ +
+
+

Game Plan

+

Before going into your SIG meeting, write down some questions you plan to ask your students. + We have some suggested questions in the root cause list to help you both ask broadly and ask about specific root causes.

+
-
- +
+
+

Guidelines for Asking Questions During SIG

+

Here are some guidelines to help you formulate questions to ask during SIG:

+
    +
  • Try to scaffold as much as you can by keep asking 'why' to get to the bottom of the issue. + For example, if a student said they didn't reach out for help, ask “why was that? Did you feel a lack of support, + or you didn't know any help-seeking channels?”
  • +
  • Ask metacognitive questions! For the cognitive issues we see, there is usually a metacognitive + cause. Try asking questions like: +
      +
    • Why did you decide to [action]?
    • +
    • How did you feel when …?
    • +
    • Why did you do one thing over another?
    • +
    • Do you feel like your decision was a mature decision?
    • +
    • Why did you feel compelled to…?
    • +
    • Why is it hard for you to…?
    • +
    +
  • +
+
+
+

Updated Hypothesis

+

updated

+
+ +
+
+

List of Potential Root Causes:

+ ); }; diff --git a/pages/response_backup.tsx b/pages/response_backup.tsx new file mode 100644 index 0000000..e76a2f2 --- /dev/null +++ b/pages/response_backup.tsx @@ -0,0 +1,201 @@ +import type { NextPage } from 'next'; +import React, { useState, useEffect } from 'react'; +// import styles from "./response.module.css" +import { RootCauses } from '../components/response/RootCauses'; +import { options } from '../lib/context/options'; +import { GetServerSideProps } from 'next'; +import connectMongo from '../utils/connectMongo'; +import { getContextValue } from '../lib/populateContext'; +import { ObjectId } from 'mongodb'; +import styles from './diagnosis.module.css'; +import Sidebar from '../components/DiagSidebar'; +import Context from '../components/DiagContext'; +import HypothesisList from '../components/HypothesisList'; +import getComputedOrganizationalObjectsForProject from './api/test/get_OS_project_object.js'; +import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; + +const Response: NextPage = ({sigName, projName, description, gen_context, detector, root_causes, id, context_lib, hypothesisList, canvasState}) => { + const [items, setItems] = useState(root_causes); + const [problemContent, setProblemContent] = useState( + description + ); + const [context, setContext] = useState(gen_context); + const defaultHypothesis = { title: 'First Hunch', content: 'fill in your first hunch here!' }; + const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); + const [canvas, setCanvas] = useState(canvasState || []); + + const updateResponse = async (desc) => { + try { + const response = await fetch('/api/test/update_response', { + method: 'PUT', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + _id: id, + gen_context: JSON.stringify(context), + hypothesisList: JSON.stringify(hypos), + description: desc, + p5Canvas: JSON.stringify(canvas), + // rcs: JSON.stringify(rclist), + }), + }); + if (response.ok) { + console.log('Database updated successfully.'); + } else { + console.error('Failed to update Database.'); + } + } catch (error) { + console.error('Error updating Database:', error); + } + }; + const getScriptByTitle = async () => { + let title = 'Unbalanced Work Across Partners'; + const res = await fetch('/api/scripts', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ title }), + }); + console.log('RESPONSE FETCHED RES', res); + if (res.ok) { + const { scriptId } = await res.json(); + let script_root_cause_list = scriptId.RC_C_S; + return script_root_cause_list; + } else { + console.log('Script not found'); + } + }; + + // let rc_list = []; + // (async () => { + // rc_list = await getScriptByTitle(); + // console.log('rc_list', rc_list) + // })(); + + useEffect(() => { + updateResponse(problemContent); + }, [context, hypos, problemContent, canvas]); + + return ( +
+
+ {/* */} + +
+
+ +
+
+ < div className={styles.RC_scrollable} style={{ whiteSpace: 'pre-line', overflowY: 'auto'}}> +

Root Causes:

+
    + {items.map((item, index) => ( +
  • +

    {item.rc}

    +

    Strategy: {item.strategy}

    +

    +
  • + ))} +
+
+
+
+
+
+ +
+ + ); + }; + + export default React.memo(Response); + +export const getServerSideProps: GetServerSideProps = async (context) => { + let response_id = context.query?.response; + + let data = await connectMongo({ + find: 'responses', + filter: { _id: new ObjectId(response_id) }, + }); + data = data[0]; + + let root_causes = []; + for (let i = 0; i < data.rcs.length; i++) { + let root_cause = data.rcs[i]; + let context = []; + // let context = root_cause.context + // if (!Array.isArray(context)) { + // context = [context] + // } + root_causes.push({ + id: i, + rc: root_cause.rc, + context: context, + strategy: root_cause.strategy, + disabled: false, + checked: false, + }); + } + + let description = data.description; + let gen_context = data.gen_context; + if (!Array.isArray(gen_context)) { + gen_context = [gen_context]; + } + + let triggers = data.triggers; + if (!Array.isArray(triggers)) { + triggers = [triggers]; + } + + let sigName = data.sigName; + let projName = data.projName; + + const project_object = await getComputedOrganizationalObjectsForProject( + projName + ); + + for (let context of gen_context) { + context.data = getContextValue(context.title, project_object); + } + + // creates a library that holds the values of all context options + const context_lib: Record = {}; + options.forEach((option) => { + context_lib[option] = getContextValue(option, project_object); + }); + + let hypothesisList = data.hypothesisList + + let canvasState: { type: string; xPos: number; yPos: number }[] = []; + // if canvas isn't initialized properly in DB or canvas is [], use context to initialize it + if (!Array.isArray(data.p5Canvas) || data.p5Canvas.length == 0) { + gen_context.forEach((context) => { + canvasState.push({ type: context.title, xPos: 50, yPos: 50 }); + }); + } else { + canvasState = data.p5Canvas + } + + // let canvasState = data.p5Canvas; + console.log('canvasState', canvasState) + + return { + props: { + sigName: sigName, + projName: projName, + description: description, + gen_context: gen_context, + detector: data.title, + root_causes: root_causes, + id: data._id.toString(), + context_lib: context_lib, + hypothesisList: hypothesisList, + canvasState: canvasState, + }} + }; diff --git a/yarn.lock b/yarn.lock index fbf254a..22ee8b0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -935,16 +935,16 @@ dependencies: "@emotion/memoize" "^0.8.1" -"@emotion/memoize@^0.8.0", "@emotion/memoize@^0.8.1": - version "0.8.1" - resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz" - integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== - "@emotion/memoize@0.7.4": version "0.7.4" resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== +"@emotion/memoize@^0.8.0", "@emotion/memoize@^0.8.1": + version "0.8.1" + resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz" + integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== + "@emotion/react@^11.10.6": version "11.10.6" resolved "https://registry.npmjs.org/@emotion/react/-/react-11.10.6.tgz" @@ -1151,11 +1151,71 @@ dependencies: glob "7.1.7" +"@next/swc-android-arm-eabi@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.3.tgz#85eed560c87c7996558c868a117be9780778f192" + integrity sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw== + +"@next/swc-android-arm64@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.2.3.tgz#8ac54ca9795a48afc4631b4823a4864bd5db0129" + integrity sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w== + +"@next/swc-darwin-arm64@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.3.tgz#f674e3c65aec505b6d218a662ade3fe248ccdbda" + integrity sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w== + "@next/swc-darwin-x64@13.2.3": version "13.2.3" resolved "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.3.tgz" integrity sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw== +"@next/swc-freebsd-x64@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.3.tgz#f7ac6ae4f7d706ff2431f33e40230a554c8c2cbc" + integrity sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g== + +"@next/swc-linux-arm-gnueabihf@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.3.tgz#84ad9e9679d55542a23b590ad9f2e1e9b2df62f7" + integrity sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA== + +"@next/swc-linux-arm64-gnu@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.3.tgz#56f9175bc632d647c60b9e8bedc0875edf92d8b7" + integrity sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA== + +"@next/swc-linux-arm64-musl@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.3.tgz#7d4cf00e8f1729a3de464da0624773f5d0d14888" + integrity sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g== + +"@next/swc-linux-x64-gnu@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.3.tgz#17de404910c4ebf7a1d366b19334d7e27e126ab0" + integrity sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ== + +"@next/swc-linux-x64-musl@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.3.tgz#07cb7b7f3a3a98034e2533f82638a9b099ba4ab1" + integrity sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA== + +"@next/swc-win32-arm64-msvc@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.3.tgz#b9ac98c954c71ec9de45d3497a8585096b873152" + integrity sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ== + +"@next/swc-win32-ia32-msvc@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.3.tgz#5ec48653a48fd664e940c69c96bba698fdae92eb" + integrity sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA== + +"@next/swc-win32-x64-msvc@13.2.3": + version "13.2.3" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.3.tgz#cd432f280beb8d8de5b7cd2501e9f502e9f3dd72" + integrity sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" @@ -1164,7 +1224,7 @@ "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== @@ -1676,7 +1736,7 @@ binary-extensions@^2.0.0: resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== -blockly@^9.2.1, "blockly@>= 3.20200024.0": +"blockly@>= 3.20200024.0", blockly@^9.2.1: version "9.2.1" resolved "https://registry.npmjs.org/blockly/-/blockly-9.2.1.tgz" integrity sha512-8iy7keOE6A3lk+PIaDOIxuzv7eXUJqNKNNn1NXkd/246YSa8DkkfgaZ3eEskejkfm/uRgi8Y4HSU1dQRCfN+Hw== @@ -1807,16 +1867,16 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@^1.1.4, color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - color-name@1.1.3: version "1.1.3" resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== +color-name@^1.1.4, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + color2k@^2.0.0: version "2.0.2" resolved "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz" @@ -1876,7 +1936,7 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -css-box-model@^1.2.0, css-box-model@1.2.1: +css-box-model@1.2.1, css-box-model@^1.2.0: version "1.2.1" resolved "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz" integrity sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw== @@ -1905,16 +1965,16 @@ cssstyle@^2.3.0: dependencies: cssom "~0.3.6" -csstype@^3.0.11, csstype@^3.0.2: - version "3.1.1" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz" - integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== - csstype@3.0.9: version "3.0.9" resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz" integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== +csstype@^3.0.11, csstype@^3.0.2: + version "3.1.1" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz" + integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== + damerau-levenshtein@^1.0.8: version "1.0.8" resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" @@ -1929,6 +1989,13 @@ data-urls@^3.0.2: whatwg-mimetype "^3.0.0" whatwg-url "^11.0.0" +debug@4, debug@4.x, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + debug@^3.2.7: version "3.2.7" resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" @@ -1936,13 +2003,6 @@ debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.1.1, debug@^4.3.2, debug@^4.3.4, debug@4, debug@4.x: - version "4.3.4" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - decimal.js@^10.4.2: version "10.4.3" resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz" @@ -2073,7 +2133,7 @@ domexception@^4.0.0: dependencies: webidl-conversions "^7.0.0" -domhandler@^4.2.0, domhandler@^4.2.2, domhandler@4.3.1: +domhandler@4.3.1, domhandler@^4.2.0, domhandler@^4.2.2: version "4.3.1" resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== @@ -2678,27 +2738,27 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@^7.1.3: - version "7.2.3" - resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== +glob@7.1.7: + version "7.1.7" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" inherits "2" - minimatch "^3.1.1" + minimatch "^3.0.4" once "^1.3.0" path-is-absolute "^1.0.0" -glob@7.1.7: - version "7.1.7" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" inherits "2" - minimatch "^3.0.4" + minimatch "^3.1.1" once "^1.3.0" path-is-absolute "^1.0.0" @@ -2915,7 +2975,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@~2.0.1, inherits@~2.0.3, inherits@2: +inherits@2, inherits@~2.0.1, inherits@~2.0.3: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -3130,6 +3190,11 @@ is-wsl@^2.2.0: dependencies: is-docker "^2.0.0" +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== + isarray@^2.0.5: version "2.0.5" resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" @@ -3140,11 +3205,6 @@ isarray@~1.0.0: resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" - integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== - isexe@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" @@ -3415,17 +3475,12 @@ mquery@5.0.0: dependencies: debug "4.x" -ms@^2.1.1: - version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - ms@2.1.2: version "2.1.2" resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3: +ms@2.1.3, ms@^2.1.1: version "2.1.3" resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -3738,19 +3793,19 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.4.18, postcss@^8.4.21: - version "8.4.21" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz" - integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== +postcss@8.4.14: + version "8.4.14" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== dependencies: nanoid "^3.3.4" picocolors "^1.0.0" source-map-js "^1.0.2" -postcss@8.4.14: - version "8.4.14" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz" - integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== +postcss@^8.4.18, postcss@^8.4.21: + version "8.4.21" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz" + integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== dependencies: nanoid "^3.3.4" picocolors "^1.0.0" @@ -3776,7 +3831,7 @@ process-nextick-args@~2.0.0: resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1, "prop-types@>= 15.6.0": +"prop-types@>= 15.6.0", prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== @@ -3851,7 +3906,7 @@ react-dom@18.2.0: loose-envify "^1.1.0" scheduler "^0.23.0" -react-fast-compare@^3.0.1, react-fast-compare@3.2.1: +react-fast-compare@3.2.1, react-fast-compare@^3.0.1: version "3.2.1" resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.1.tgz" integrity sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg== @@ -4226,18 +4281,6 @@ stop-iteration-iterator@^1.0.0: dependencies: internal-slot "^1.0.4" -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" - integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - string.prototype.matchall@^4.0.8: version "4.0.8" resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz" @@ -4270,6 +4313,18 @@ string.prototype.trimstart@^1.0.6: define-properties "^1.1.4" es-abstract "^1.20.4" +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" @@ -4394,11 +4449,6 @@ text-table@^0.2.0: resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== -through@^2.3.8: - version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - through2@~0.4.1: version "0.4.2" resolved "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz" @@ -4407,6 +4457,11 @@ through2@~0.4.1: readable-stream "~1.0.17" xtend "~2.1.1" +through@^2.3.8: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + tiny-glob@^0.2.9: version "0.2.9" resolved "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz" @@ -4464,6 +4519,11 @@ tsconfig-paths@^3.14.1: minimist "^1.2.6" strip-bom "^3.0.0" +tslib@2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + tslib@^1.8.1: version "1.14.1" resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" @@ -4474,11 +4534,6 @@ tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0, tslib@^2.5.0: resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz" integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== -tslib@2.4.0: - version "2.4.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" - integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== - tsutils@^3.21.0: version "3.21.0" resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" @@ -4486,7 +4541,7 @@ tsutils@^3.21.0: dependencies: tslib "^1.8.1" -type-check@^0.4.0: +type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== @@ -4500,13 +4555,6 @@ type-check@~0.3.2: dependencies: prelude-ls "~1.1.2" -type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - type-fest@^0.20.2: version "0.20.2" resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" From e1a0a279e6c8aad48e8f566341acc1d2121213d2 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 14 Feb 2024 02:32:57 -0600 Subject: [PATCH 058/111] added components + clean up files --- components/DiagContext.tsx | 141 ------------------ components/HypothesisList.tsx | 81 ---------- .../{ => diagnosis}/DiagContext.module.css | 17 ++- components/diagnosis/DiagContext.tsx | 105 +++++++++++++ components/diagnosis/GamePlan.module.css | 22 +++ components/diagnosis/GamePlan.tsx | 26 ++++ components/diagnosis/Guidelines.module.css | 18 +++ components/diagnosis/Guidelines.tsx | 30 ++++ .../{ => diagnosis}/Hypothesis.module.css | 0 components/{ => diagnosis}/Hypothesis.tsx | 0 .../diagnosis/HypothesisList.module.css | 11 ++ components/diagnosis/HypothesisList.tsx | 49 ++++++ components/diagnosis/InitialHunch.tsx | 25 ++++ .../InitialHunchComponent.module.css | 25 ++++ components/diagnosis/ListofRC.module.css | 23 +++ components/diagnosis/ListofRC.tsx | 28 ++++ components/diagnosis/Signal.module.css | 11 ++ components/diagnosis/Signal.tsx | 22 +++ pages/diagnosis.module.css | 63 +------- pages/response.tsx | 65 ++------ pages/response_backup.tsx | 4 +- 21 files changed, 429 insertions(+), 337 deletions(-) delete mode 100644 components/DiagContext.tsx delete mode 100644 components/HypothesisList.tsx rename components/{ => diagnosis}/DiagContext.module.css (61%) create mode 100644 components/diagnosis/DiagContext.tsx create mode 100644 components/diagnosis/GamePlan.module.css create mode 100644 components/diagnosis/GamePlan.tsx create mode 100644 components/diagnosis/Guidelines.module.css create mode 100644 components/diagnosis/Guidelines.tsx rename components/{ => diagnosis}/Hypothesis.module.css (100%) rename components/{ => diagnosis}/Hypothesis.tsx (100%) create mode 100644 components/diagnosis/HypothesisList.module.css create mode 100644 components/diagnosis/HypothesisList.tsx create mode 100644 components/diagnosis/InitialHunch.tsx create mode 100644 components/diagnosis/InitialHunchComponent.module.css create mode 100644 components/diagnosis/ListofRC.module.css create mode 100644 components/diagnosis/ListofRC.tsx create mode 100644 components/diagnosis/Signal.module.css create mode 100644 components/diagnosis/Signal.tsx diff --git a/components/DiagContext.tsx b/components/DiagContext.tsx deleted file mode 100644 index 86d8a3f..0000000 --- a/components/DiagContext.tsx +++ /dev/null @@ -1,141 +0,0 @@ -import React, { useState, useCallback} from 'react'; -import styles from './DiagContext.module.css'; -import { options } from '../lib/context/options'; -import P5Canvas from './diagnosis/P5Canvas'; - -const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) => { - const [popupOptions, setPopupOptions] = useState( - options.filter((option) => !items.some((item) => item.title === option)) - ); - - const [isPopupOpen, setPopupOpen] = useState(false); - - const openPopup = () => { - setPopupOpen(true); - }; - - const closePopup = () => { - setPopupOpen(false); - }; - - const addOptionToContext = (option: any) => { - const newItem = { title: option, data: context_lib[option] }; - setItems([...items, newItem]); - setPopupOptions(popupOptions.filter((popOption) => popOption !== option)); - setCanvas([...canvas, { type: newItem.title, xPos: 50, yPos: 50 }]); - }; - - const removeItem = (index) => { - const removedItem = items[index]; - const updatedItems = [...items]; - updatedItems.splice(index, 1); - setItems(updatedItems); - setPopupOptions([...popupOptions, removedItem.title]); // Add the removed item back to popupOptions - }; - - const test = ['Sprint log-Total Points Commited This Sprint', 'PRC-link to PRC'] - - return ( -
-

Context

- {/*
*/} - {/* - -
- {isPopupOpen && ( -
-
-

- Select an option to add -

-
    - {popupOptions.map((option, index) => ( -
  • - -
  • - ))} -
- -
-
- )} - */} -
- < div className={styles.context_scrollable} style={{whiteSpace: 'pre-line', overflowY: 'auto'}}> - {items.map((option, index) => ( -
- {(option.title === 'PRC-link to PRC' || option.title === 'Link to Sprint Log') ? ( - - {option.title}: {option.data} - - ) : ( - `${option.title}: ${option.data}` - )} - -
- ))} -
- -
- {isPopupOpen && ( -
-
-

- Select an option to add -

-
    - {popupOptions.map((option, index) => ( -
  • - -
  • - ))} -
- -
-
- )} - - // - ); -}; - -export default Context; diff --git a/components/HypothesisList.tsx b/components/HypothesisList.tsx deleted file mode 100644 index 8a8d773..0000000 --- a/components/HypothesisList.tsx +++ /dev/null @@ -1,81 +0,0 @@ -import React, { useState } from 'react'; -import Hypothesis from './Hypothesis'; - -const HypothesisList: React.FC = ({items, hypos, setHypos}) => { - const addHypothesis = () => { - const newHypothesis = { title: 'Updated hypothesis', content: 'fill in your updated hypothesis' }; - setHypos([newHypothesis, ...hypos]); - }; - - const updateHypothesis = (index: number, content: string) => { - const newHypotheses = [...hypos]; - newHypotheses[index].content = content; - setHypos(newHypotheses); - }; - - const deleteHypothesis = (index: number) => { - const newHypos = [...hypos]; - newHypos.splice(index, 1); // Remove the hypothesis at the specified index - setHypos(newHypos); - }; - - // const [popupVisible, setPopupVisible] = useState(false); - // const togglePopup = () => { - // setPopupVisible(!popupVisible); - // }; - - // const closePopup = () => { - // setPopupVisible(false); - // }; - - return ( -
- -
- {hypos.map((hypoData, index) => ( - updateHypothesis(index, content)} - onDelete={() => deleteHypothesis(index)} - /> - ))} -
- {/* */} - {/* {popupVisible && ( -
- -

Root Causes:

-
    - {items.map((item, index) => ( -
  • -

    {item.rc}

    - {/*
      - {item.context.map((ctx, i) => ( -
    • Context: {ctx.title}
    • - ))} -
    */} - {/*

    Strategy: {item.strategy}

    -

    -
  • - ))} -
-
- )} */} -
- ); -}; - -export default HypothesisList; diff --git a/components/DiagContext.module.css b/components/diagnosis/DiagContext.module.css similarity index 61% rename from components/DiagContext.module.css rename to components/diagnosis/DiagContext.module.css index 8be3b5f..5399c4f 100644 --- a/components/DiagContext.module.css +++ b/components/diagnosis/DiagContext.module.css @@ -1,6 +1,6 @@ .container{ width: 100%; - height: 60%; + height: 100%; } .context_space { @@ -18,4 +18,17 @@ height: 100%; box-sizing: border-box; position: relative; -} \ No newline at end of file +} + +.headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; +} + +.contextDiv { + background-color: white; + padding: 15px; + margin: 8px; + height: 60%; +} diff --git a/components/diagnosis/DiagContext.tsx b/components/diagnosis/DiagContext.tsx new file mode 100644 index 0000000..576d90d --- /dev/null +++ b/components/diagnosis/DiagContext.tsx @@ -0,0 +1,105 @@ +import React, { useState, useCallback} from 'react'; +import styles from './DiagContext.module.css'; +import { options } from '../../lib/context/options'; +import P5Canvas from './P5Canvas'; + +const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) => { + const [popupOptions, setPopupOptions] = useState( + options.filter((option) => !items.some((item) => item.title === option)) + ); + + const [isPopupOpen, setPopupOpen] = useState(false); + + const openPopup = () => { + setPopupOpen(true); + }; + + const closePopup = () => { + setPopupOpen(false); + }; + + const addOptionToContext = (option: any) => { + const newItem = { title: option, data: context_lib[option] }; + setItems([...items, newItem]); + setPopupOptions(popupOptions.filter((popOption) => popOption !== option)); + setCanvas([...canvas, { type: newItem.title, xPos: 50, yPos: 50 }]); + }; + + const removeItem = (index) => { + const removedItem = items[index]; + const updatedItems = [...items]; + updatedItems.splice(index, 1); + setItems(updatedItems); + setPopupOptions([...popupOptions, removedItem.title]); // Add the removed item back to popupOptions + }; + + const test = ['Sprint log-Total Points Commited This Sprint', 'PRC-link to PRC'] + + return ( +
+

Context

+
+
+ < div className={styles.context_scrollable} style={{whiteSpace: 'pre-line', overflowY: 'auto'}}> + {items.map((option, index) => ( +
+ {(option.title === 'PRC-link to PRC' || option.title === 'Link to Sprint Log') ? ( + + {option.title}: {option.data} + + ) : ( + `${option.title}: ${option.data}` + )} + +
+ ))} +
+ +
+ {isPopupOpen && ( +
+
+

+ Select an option to add +

+
    + {popupOptions.map((option, index) => ( +
  • + +
  • + ))} +
+ +
+
+ )} +
+ + ); +}; + +export default Context; diff --git a/components/diagnosis/GamePlan.module.css b/components/diagnosis/GamePlan.module.css new file mode 100644 index 0000000..82098e3 --- /dev/null +++ b/components/diagnosis/GamePlan.module.css @@ -0,0 +1,22 @@ +.sideBySideItem2 { + width: 60%; + background-color: white; + padding: 8px; + } + + .sideBySideItem2 textarea { + width: 100%; + background-color: #e5e7eb;; + height: 200px; + } + + .sideBySideItem2 p { + font-size: 0.8rem; + margin-bottom: 10px; + } + +.headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; + } diff --git a/components/diagnosis/GamePlan.tsx b/components/diagnosis/GamePlan.tsx new file mode 100644 index 0000000..0117ef8 --- /dev/null +++ b/components/diagnosis/GamePlan.tsx @@ -0,0 +1,26 @@ +import React, { useState, ChangeEvent } from 'react'; +import styles from './GamePlan.module.css'; + +const GamePlan: React.FC = () => { + const [gamePlan, setGamePlan] = useState(''); + + const handleInputChange = (event: ChangeEvent) => { + setGamePlan(event.target.value); + }; + + return ( +
+

Game Plan

+

Before going into your SIG meeting, write down some questions you plan to ask your students. + We have some suggested questions in the root cause list to help you both ask broadly and ask about specific root causes.

+ +
+ ); +}; + +export default GamePlan; diff --git a/components/diagnosis/Guidelines.module.css b/components/diagnosis/Guidelines.module.css new file mode 100644 index 0000000..3bfaf17 --- /dev/null +++ b/components/diagnosis/Guidelines.module.css @@ -0,0 +1,18 @@ +.header { + background-color: white; + padding: 15px; + margin: 8px; + } + + .headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; + } + + +.list { + font-size: 14px; + margin-left: 30px; + list-style-type: disc; + } \ No newline at end of file diff --git a/components/diagnosis/Guidelines.tsx b/components/diagnosis/Guidelines.tsx new file mode 100644 index 0000000..efefb79 --- /dev/null +++ b/components/diagnosis/Guidelines.tsx @@ -0,0 +1,30 @@ +import React from 'react'; +import styles from './Guidelines.module.css'; + +const Guidelines: React.FC = () => { + + return ( +
+

Guidelines for Asking Questions During SIG

+

Here are some guidelines to help you formulate questions to ask during SIG:

+
    +
  • Try to scaffold as much as you can by keep asking 'why' to get to the bottom of the issue. + For example, if a student said they didn't reach out for help, ask “why was that? Did you feel a lack of support, + or you didn't know any help-seeking channels?”
  • +
  • Ask metacognitive questions! For the cognitive issues we see, there is usually a metacognitive + cause. Try asking questions like: +
      +
    • Why did you decide to [action]?
    • +
    • How did you feel when …?
    • +
    • Why did you do one thing over another?
    • +
    • Do you feel like your decision was a mature decision?
    • +
    • Why did you feel compelled to…?
    • +
    • Why is it hard for you to…?
    • +
    +
  • +
+
+ ); +}; + +export default Guidelines; diff --git a/components/Hypothesis.module.css b/components/diagnosis/Hypothesis.module.css similarity index 100% rename from components/Hypothesis.module.css rename to components/diagnosis/Hypothesis.module.css diff --git a/components/Hypothesis.tsx b/components/diagnosis/Hypothesis.tsx similarity index 100% rename from components/Hypothesis.tsx rename to components/diagnosis/Hypothesis.tsx diff --git a/components/diagnosis/HypothesisList.module.css b/components/diagnosis/HypothesisList.module.css new file mode 100644 index 0000000..7a5e688 --- /dev/null +++ b/components/diagnosis/HypothesisList.module.css @@ -0,0 +1,11 @@ +.header { + background-color: white; + padding: 15px; + margin: 8px; + } + + .headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; + } \ No newline at end of file diff --git a/components/diagnosis/HypothesisList.tsx b/components/diagnosis/HypothesisList.tsx new file mode 100644 index 0000000..4a9f958 --- /dev/null +++ b/components/diagnosis/HypothesisList.tsx @@ -0,0 +1,49 @@ +import React, { useState } from 'react'; +import Hypothesis from './Hypothesis'; +import styles from './HypothesisList.module.css' + +const HypothesisList: React.FC = ({items, hypos, setHypos}) => { + const addHypothesis = () => { + const newHypothesis = { title: 'Updated hypothesis', content: 'fill in your updated hypothesis' }; + setHypos([newHypothesis, ...hypos]); + }; + + const updateHypothesis = (index: number, content: string) => { + const newHypotheses = [...hypos]; + newHypotheses[index].content = content; + setHypos(newHypotheses); + }; + + const deleteHypothesis = (index: number) => { + const newHypos = [...hypos]; + newHypos.splice(index, 1); // Remove the hypothesis at the specified index + setHypos(newHypos); + }; + + return ( +
+
+

Updated Hypothesis

+ +
+
+ {hypos.map((hypoData, index) => ( +
+ updateHypothesis(index, content)} + onDelete={() => deleteHypothesis(index)} + /> +
+ ))} +
+
+ ); +}; + +export default HypothesisList; diff --git a/components/diagnosis/InitialHunch.tsx b/components/diagnosis/InitialHunch.tsx new file mode 100644 index 0000000..b6034d8 --- /dev/null +++ b/components/diagnosis/InitialHunch.tsx @@ -0,0 +1,25 @@ +import React, { useState, ChangeEvent } from 'react'; +import styles from './InitialHunchComponent.module.css'; + +const InitialHunch: React.FC = () => { + const [initialHunch, setInitialHunch] = useState(''); + + const handleInputChange = (event: ChangeEvent) => { + setInitialHunch(event.target.value); + }; + + return ( +
+

Initial Hunch

+

Based on the signal and contexts, cognitively what is the student doing ineffectively? Metacognitively, what belief might the student have might be causing their ineffective practice? Write down your initial hunch of the root cause of this issue. Reference the root cause list for ideas.

+ +
+ ); +}; + +export default InitialHunch; diff --git a/components/diagnosis/InitialHunchComponent.module.css b/components/diagnosis/InitialHunchComponent.module.css new file mode 100644 index 0000000..65332b0 --- /dev/null +++ b/components/diagnosis/InitialHunchComponent.module.css @@ -0,0 +1,25 @@ +.sideBySideItem1 { + width: 40%; + background-color: white; + margin-right: 8px; + padding: 8px; + } + +.sideBySideItem1 textarea { + width: 100%; + background-color: #e5e7eb; + height: 165px; + padding: 10px; + box-sizing: border-box; +} + +.sideBySideItem1 p { + font-size: 0.8rem; + margin-bottom: 10px; +} + +.headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; + } diff --git a/components/diagnosis/ListofRC.module.css b/components/diagnosis/ListofRC.module.css new file mode 100644 index 0000000..40a24a1 --- /dev/null +++ b/components/diagnosis/ListofRC.module.css @@ -0,0 +1,23 @@ +.columnContent { + padding: 15px; +} + +.headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; +} + +.RCcontainer{ + width: 100%; + height: 100%; + z-index: 1; +} + +.RC_list { + background-color: white; + width: 100%; + height: 100%; + box-sizing: border-box; + position: relative; +} \ No newline at end of file diff --git a/components/diagnosis/ListofRC.tsx b/components/diagnosis/ListofRC.tsx new file mode 100644 index 0000000..220ee33 --- /dev/null +++ b/components/diagnosis/ListofRC.tsx @@ -0,0 +1,28 @@ +import React from 'react'; +import styles from './ListofRC.module.css'; + +const ListofRC: React.FC = ({items}) => { + + return ( +
+

List of Potential Root Causes:

+
+
+ < div className={styles.RC_scrollable} style={{ whiteSpace: 'pre-line', overflowY: 'auto'}}> +
    + {items.map((item, index) => ( +
  • +

    {item.rc}

    +

    Strategy: {item.strategy}

    +

    +
  • + ))} +
+
+
+
+ + ); +}; + +export default ListofRC; diff --git a/components/diagnosis/Signal.module.css b/components/diagnosis/Signal.module.css new file mode 100644 index 0000000..7a5e688 --- /dev/null +++ b/components/diagnosis/Signal.module.css @@ -0,0 +1,11 @@ +.header { + background-color: white; + padding: 15px; + margin: 8px; + } + + .headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; + } \ No newline at end of file diff --git a/components/diagnosis/Signal.tsx b/components/diagnosis/Signal.tsx new file mode 100644 index 0000000..69741fc --- /dev/null +++ b/components/diagnosis/Signal.tsx @@ -0,0 +1,22 @@ +import React, { useState, useEffect } from 'react'; +import styles from './Signal.module.css'; + +interface SignalProps { + content: string; + title: string; + project: string; +} + +const Signal: React.FC = ({ content, title, project}) => { + useEffect(() => { + }, []); + + return ( +
+

Signal Debrief

+

Your detector for {title} has been triggered for {project}. {content}.

+
+ ); +}; + +export default Signal; diff --git a/pages/diagnosis.module.css b/pages/diagnosis.module.css index 28cc927..4b8cada 100644 --- a/pages/diagnosis.module.css +++ b/pages/diagnosis.module.css @@ -19,25 +19,9 @@ padding: 10px; } -.columnContent { - padding: 1rem; -} - -.header { - background-color: white; - padding: 15px; - margin: 8px; -} - -.headerTitle { - font-size: 1.5rem; - font-weight: bold; - margin-bottom: 0.5rem; -} - -.contextDiv { - padding: 8px; - margin: 0 8px 16px 8px; +.contextContainer { + max-height: 400px; + overflow: auto; } .container2 { @@ -47,45 +31,4 @@ .sideBySide { display: flex; margin: 0; -} - -.sideBySideItem1 { - width: 40%; - background-color: white; - margin-right: 8px; - padding: 8px; -} - -.sideBySideItem2 { - width: 60%; - background-color: white; - padding: 8px; -} - -.sideBySideItem1 textarea { - width: 100%; - background-color: #e5e7eb; - height: 165px; -} - -.sideBySideItem2 textarea { - width: 100%; - background-color: #e5e7eb;; - height: 200px; -} - -.sideBySideItem1 p { - font-size: 0.8rem; - margin-bottom: 10px; -} - -.sideBySideItem2 p { - font-size: 0.8rem; - margin-bottom: 10px; -} - -.list { - font-size: 14px; - margin-left: 30px; - list-style-type: disc; } \ No newline at end of file diff --git a/pages/response.tsx b/pages/response.tsx index e85a477..18d6214 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -8,9 +8,13 @@ import connectMongo from '../utils/connectMongo'; import { getContextValue } from '../lib/populateContext'; import { ObjectId } from 'mongodb'; import styles from './diagnosis.module.css'; -import Sidebar from '../components/DiagSidebar'; -import Context from '../components/DiagContext'; -import HypothesisList from '../components/HypothesisList'; +import Signal from '../components/diagnosis/Signal'; +import ListofRC from '../components/diagnosis/ListofRC'; +import Context from '../components/diagnosis/DiagContext'; +import InitialHunch from '../components/diagnosis/InitialHunch'; +import GamePlan from '../components/diagnosis/GamePlan'; +import Guidelines from '../components/diagnosis/Guidelines'; +import HypothesisList from '../components/diagnosis/HypothesisList'; import getComputedOrganizationalObjectsForProject from '../pages/api/test/get_OS_project_object.js'; import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; @@ -79,60 +83,19 @@ const Response: NextPage = ({sigName, projName, description, gen_context, detect return (
-
-

Signal Debrief

-

Your detector for Overcommitted has been triggered for Human-AI Tools for Accounting for Differences. Jiayi and Yiran committed 46 points out of 32 available

-
-
-

Context

-

Context

-
+ +
-
-

Initial Hunch

-

Based on the signal and contexts, cognitively what is the student doing ineffectively? - Metacognitively, what belief might the student have might be causing their ineffective practice? - Write down your initial hunch of the root cause of this issue. Reference the root cause list for ideas.

- -
-
-

Game Plan

-

Before going into your SIG meeting, write down some questions you plan to ask your students. - We have some suggested questions in the root cause list to help you both ask broadly and ask about specific root causes.

- -
+ +
-
-

Guidelines for Asking Questions During SIG

-

Here are some guidelines to help you formulate questions to ask during SIG:

-
    -
  • Try to scaffold as much as you can by keep asking 'why' to get to the bottom of the issue. - For example, if a student said they didn't reach out for help, ask “why was that? Did you feel a lack of support, - or you didn't know any help-seeking channels?”
  • -
  • Ask metacognitive questions! For the cognitive issues we see, there is usually a metacognitive - cause. Try asking questions like: -
      -
    • Why did you decide to [action]?
    • -
    • How did you feel when …?
    • -
    • Why did you do one thing over another?
    • -
    • Do you feel like your decision was a mature decision?
    • -
    • Why did you feel compelled to…?
    • -
    • Why is it hard for you to…?
    • -
    -
  • -
-
-
-

Updated Hypothesis

-

updated

-
+ +
-
-

List of Potential Root Causes:

-
+
); diff --git a/pages/response_backup.tsx b/pages/response_backup.tsx index e76a2f2..cfc0e2f 100644 --- a/pages/response_backup.tsx +++ b/pages/response_backup.tsx @@ -9,8 +9,8 @@ import { getContextValue } from '../lib/populateContext'; import { ObjectId } from 'mongodb'; import styles from './diagnosis.module.css'; import Sidebar from '../components/DiagSidebar'; -import Context from '../components/DiagContext'; -import HypothesisList from '../components/HypothesisList'; +import Context from '../components/diagnosis/DiagContext'; +import HypothesisList from '../components/diagnosis/HypothesisList'; import getComputedOrganizationalObjectsForProject from './api/test/get_OS_project_object.js'; import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; From f19ad5088757897d5ad474a812037d5d8d0fee6d Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 14 Feb 2024 03:19:29 -0600 Subject: [PATCH 059/111] strategy button + update save functions for initial hunch and game plan --- components/diagnosis/GamePlan.module.css | 2 + components/diagnosis/GamePlan.tsx | 14 +++-- ...ent.module.css => InitialHunch.module.css} | 0 components/diagnosis/InitialHunch.tsx | 18 ++++--- components/diagnosis/ListofRC.module.css | 8 ++- components/diagnosis/ListofRC.tsx | 53 ++++++++++++++----- package.json | 1 + pages/api/test/update_response.js | 4 +- pages/response.tsx | 24 +++++---- yarn.lock | 5 ++ 10 files changed, 93 insertions(+), 36 deletions(-) rename components/diagnosis/{InitialHunchComponent.module.css => InitialHunch.module.css} (100%) diff --git a/components/diagnosis/GamePlan.module.css b/components/diagnosis/GamePlan.module.css index 82098e3..b66d87a 100644 --- a/components/diagnosis/GamePlan.module.css +++ b/components/diagnosis/GamePlan.module.css @@ -8,6 +8,8 @@ width: 100%; background-color: #e5e7eb;; height: 200px; + padding: 10px; + box-sizing: border-box; } .sideBySideItem2 p { diff --git a/components/diagnosis/GamePlan.tsx b/components/diagnosis/GamePlan.tsx index 0117ef8..6b662cb 100644 --- a/components/diagnosis/GamePlan.tsx +++ b/components/diagnosis/GamePlan.tsx @@ -1,11 +1,15 @@ -import React, { useState, ChangeEvent } from 'react'; +import React, { useState, useEffect, ChangeEvent } from 'react'; import styles from './GamePlan.module.css'; -const GamePlan: React.FC = () => { - const [gamePlan, setGamePlan] = useState(''); +interface Props { + plan: string; + setPlan: (content: string) => void; +} + +const GamePlan: React.FC = ({plan, setPlan}) => { const handleInputChange = (event: ChangeEvent) => { - setGamePlan(event.target.value); + setPlan(event.target.value); }; return ( @@ -15,7 +19,7 @@ const GamePlan: React.FC = () => { We have some suggested questions in the root cause list to help you both ask broadly and ask about specific root causes.

diff --git a/components/diagnosis/InitialHunchComponent.module.css b/components/diagnosis/InitialHunch.module.css similarity index 100% rename from components/diagnosis/InitialHunchComponent.module.css rename to components/diagnosis/InitialHunch.module.css diff --git a/components/diagnosis/InitialHunch.tsx b/components/diagnosis/InitialHunch.tsx index b6034d8..8614fe6 100644 --- a/components/diagnosis/InitialHunch.tsx +++ b/components/diagnosis/InitialHunch.tsx @@ -1,11 +1,17 @@ -import React, { useState, ChangeEvent } from 'react'; -import styles from './InitialHunchComponent.module.css'; +import React, { useState, useEffect, ChangeEvent } from 'react'; +import styles from './InitialHunch.module.css'; -const InitialHunch: React.FC = () => { - const [initialHunch, setInitialHunch] = useState(''); +interface Props { + hunch: string; + setHunch: (content: string) => void; +} + +const InitialHunch: React.FC = ({hunch, setHunch}) => { + useEffect(() => { + }, []); const handleInputChange = (event: ChangeEvent) => { - setInitialHunch(event.target.value); + setHunch(event.target.value); }; return ( @@ -14,7 +20,7 @@ const InitialHunch: React.FC = () => {

Based on the signal and contexts, cognitively what is the student doing ineffectively? Metacognitively, what belief might the student have might be causing their ineffective practice? Write down your initial hunch of the root cause of this issue. Reference the root cause list for ideas.

diff --git a/components/diagnosis/ListofRC.module.css b/components/diagnosis/ListofRC.module.css index 40a24a1..1975715 100644 --- a/components/diagnosis/ListofRC.module.css +++ b/components/diagnosis/ListofRC.module.css @@ -20,4 +20,10 @@ height: 100%; box-sizing: border-box; position: relative; -} \ No newline at end of file +} + +.list { + font-size: 14px; + margin-left: 30px; + list-style-type: disc; + } \ No newline at end of file diff --git a/components/diagnosis/ListofRC.tsx b/components/diagnosis/ListofRC.tsx index 220ee33..7c7c52c 100644 --- a/components/diagnosis/ListofRC.tsx +++ b/components/diagnosis/ListofRC.tsx @@ -1,28 +1,55 @@ -import React from 'react'; +import React, { useState } from 'react'; import styles from './ListofRC.module.css'; -const ListofRC: React.FC = ({items}) => { +const ListofRC: React.FC = ({ items }) => { + const [expandedItems, setExpandedItems] = useState([]); + + const toggleItem = (index: number) => { + if (expandedItems.includes(index)) { + setExpandedItems(expandedItems.filter(itemIndex => itemIndex !== index)); + } else { + setExpandedItems([...expandedItems, index]); + } + }; return (
-

List of Potential Root Causes:

-
+

List of Potential Root Causes:

+
- < div className={styles.RC_scrollable} style={{ whiteSpace: 'pre-line', overflowY: 'auto'}}> +
    - {items.map((item, index) => ( + {items.map((item, index) => (
  • -

    {item.rc}

    -

    Strategy: {item.strategy}

    -

    +

    {item.rc}

    +

    Ask: {item.question}

    + + {expandedItems.includes(index) && ( +
    +

    Strategy:

    +
      + {item.strategy.split('\n').map((strategy, strategyIndex) => ( +
    • {strategy}
    • + ))} +
    +
    + )} +

    +

  • - ))} + ))}
-
-
+
+
); }; -export default ListofRC; +export default ListofRC; \ No newline at end of file diff --git a/package.json b/package.json index 6dc6932..83bfeeb 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "@mantine/core": "^6.0.0", "@mantine/hooks": "^6.0.0", "@mantine/next": "^6.0.0", + "@next/swc-darwin-x64": "^14.1.0", "@vygruppen/spor-accordion-react": "^1.0.1", "blockly": "^9.2.1", "dotenv": "^16.3.1", diff --git a/pages/api/test/update_response.js b/pages/api/test/update_response.js index 6048ca6..557403d 100644 --- a/pages/api/test/update_response.js +++ b/pages/api/test/update_response.js @@ -4,7 +4,7 @@ import { ObjectId } from 'mongodb'; export default async function updateResponse(req, res) { if (req.method === 'PUT') { try { - const { _id, gen_context, hypothesisList, description, p5Canvas } = + const { _id, gen_context, hypothesisList, description, initial_hunch, game_plan, p5Canvas } = req.body; const genContextObject = JSON.parse(gen_context); const hypothesisListObject = JSON.parse(hypothesisList); @@ -18,6 +18,8 @@ export default async function updateResponse(req, res) { gen_context: genContextObject, hypothesisList: hypothesisListObject, description: description, + initial_hunch: initial_hunch, + game_plan: game_plan, p5Canvas: canvasObject, // rcs: rcListObject, }, diff --git a/pages/response.tsx b/pages/response.tsx index 18d6214..3165619 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -18,12 +18,14 @@ import HypothesisList from '../components/diagnosis/HypothesisList'; import getComputedOrganizationalObjectsForProject from '../pages/api/test/get_OS_project_object.js'; import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; -const Response: NextPage = ({sigName, projName, description, gen_context, detector, root_causes, id, context_lib, hypothesisList, canvasState}) => { +const Response: NextPage = ({sigName, projName, description, gen_context, initial_hunch, game_plan, detector, root_causes, id, context_lib, hypothesisList, canvasState}) => { const [items, setItems] = useState(root_causes); const [problemContent, setProblemContent] = useState( description ); const [context, setContext] = useState(gen_context); + const [hunch, setHunch] = useState(initial_hunch); + const [plan, setPlan] = useState(game_plan); const defaultHypothesis = { title: 'First Hunch', content: 'fill in your first hunch here!' }; const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); const [canvas, setCanvas] = useState(canvasState || []); @@ -40,6 +42,8 @@ const Response: NextPage = ({sigName, projName, description, gen_context, detect gen_context: JSON.stringify(context), hypothesisList: JSON.stringify(hypos), description: desc, + initial_hunch: hunch, + game_plan: plan, p5Canvas: JSON.stringify(canvas), // rcs: JSON.stringify(rclist), }), @@ -53,6 +57,7 @@ const Response: NextPage = ({sigName, projName, description, gen_context, detect console.error('Error updating Database:', error); } }; + const getScriptByTitle = async () => { let title = 'Unbalanced Work Across Partners'; const res = await fetch('/api/scripts', { @@ -70,15 +75,9 @@ const Response: NextPage = ({sigName, projName, description, gen_context, detect } }; - // let rc_list = []; - // (async () => { - // rc_list = await getScriptByTitle(); - // console.log('rc_list', rc_list) - // })(); - useEffect(() => { updateResponse(problemContent); - }, [context, hypos, problemContent, canvas]); + }, [context, hypos, hunch, plan, problemContent, canvas]); return (
@@ -87,8 +86,8 @@ const Response: NextPage = ({sigName, projName, description, gen_context, detect
- - + +
@@ -123,6 +122,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => { root_causes.push({ id: i, rc: root_cause.rc, + question: root_cause.question, context: context, strategy: root_cause.strategy, disabled: false, @@ -130,6 +130,8 @@ export const getServerSideProps: GetServerSideProps = async (context) => { }); } + let initial_hunch = data.initial_hunch; + let game_plan = data.game_plan; let description = data.description; let gen_context = data.gen_context; if (!Array.isArray(gen_context)) { @@ -179,6 +181,8 @@ export const getServerSideProps: GetServerSideProps = async (context) => { projName: projName, description: description, gen_context: gen_context, + initial_hunch: initial_hunch, + game_plan: game_plan, detector: data.title, root_causes: root_causes, id: data._id.toString(), diff --git a/yarn.lock b/yarn.lock index 22ee8b0..5e48eda 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1171,6 +1171,11 @@ resolved "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.3.tgz" integrity sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw== +"@next/swc-darwin-x64@^14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.0.tgz#0863a22feae1540e83c249384b539069fef054e9" + integrity sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g== + "@next/swc-freebsd-x64@13.2.3": version "13.2.3" resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.3.tgz#f7ac6ae4f7d706ff2431f33e40230a554c8c2cbc" From e27eb5bf6ade938d51ddb97427d47e044b10dc63 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 14 Feb 2024 03:34:28 -0600 Subject: [PATCH 060/111] deployment fix --- package.json | 54 ---------------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 package.json diff --git a/package.json b/package.json deleted file mode 100644 index 83bfeeb..0000000 --- a/package.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "private": true, - "scripts": { - "dev": "node app.js", - "build": "next build", - "start": "next start", - "lint": "next lint" - }, - "dependencies": { - "@chakra-ui/react": "^2.6.1", - "@dnd-kit/core": "^6.0.8", - "@dnd-kit/sortable": "^7.0.2", - "@dnd-kit/utilities": "^3.2.1", - "@emotion/react": "^11.10.6", - "@emotion/server": "^11.10.0", - "@emotion/styled": "^11.11.0", - "@mantine/carousel": "^6.0.0", - "@mantine/core": "^6.0.0", - "@mantine/hooks": "^6.0.0", - "@mantine/next": "^6.0.0", - "@next/swc-darwin-x64": "^14.1.0", - "@vygruppen/spor-accordion-react": "^1.0.1", - "blockly": "^9.2.1", - "dotenv": "^16.3.1", - "embla-carousel-react": "^7.0.9", - "framer-motion": "^10.12.10", - "mongo": "^0.1.0", - "mongoose": "^7.1.1", - "next": "latest", - "p5": "^1.8.0", - "react": "18.2.0", - "react-beautiful-dnd": "^13.1.1", - "react-blockly": "^7.0.1", - "react-dom": "18.2.0", - "react-modal": "^3.16.1", - "react-sortable-hoc": "^2.0.0", - "reactstrap": "^9.1.6" - }, - "devDependencies": { - "@types/node": "18.13.0", - "@types/p5": "^1.7.3", - "@types/react": "18.0.27", - "@types/react-beautiful-dnd": "^13.1.4", - "@types/react-dom": "18.0.10", - "autoprefixer": "^10.4.13", - "eslint": "^8.33.0", - "eslint-config-next": "^13.1.6", - "eslint-config-prettier": "^8.6.0", - "postcss": "^8.4.21", - "prettier": "^2.8.4", - "tailwindcss": "^3.2.4", - "typescript": "4.9.5" - } -} From cdc05c6a0459b4e1a2ac9df2e92b561a5a951e16 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:46:19 -0600 Subject: [PATCH 061/111] package fixes --- components/diagnosis/Guidelines.tsx | 6 +- package-lock.json | 13785 -------------------------- package.json | 54 + yarn.lock | 4708 +++++---- 4 files changed, 2617 insertions(+), 15936 deletions(-) delete mode 100644 package-lock.json create mode 100644 package.json diff --git a/components/diagnosis/Guidelines.tsx b/components/diagnosis/Guidelines.tsx index efefb79..ddcba51 100644 --- a/components/diagnosis/Guidelines.tsx +++ b/components/diagnosis/Guidelines.tsx @@ -8,9 +8,9 @@ const Guidelines: React.FC = () => {

Guidelines for Asking Questions During SIG

Here are some guidelines to help you formulate questions to ask during SIG:

    -
  • Try to scaffold as much as you can by keep asking 'why' to get to the bottom of the issue. - For example, if a student said they didn't reach out for help, ask “why was that? Did you feel a lack of support, - or you didn't know any help-seeking channels?”
  • +
  • Try to scaffold as much as you can by keep asking 'why' to get to the bottom of the issue. + For example, if a student said they didn't reach out for help, ask “why was that? Did you feel a lack of support, + or you didn't know any help-seeking channels?”
  • Ask metacognitive questions! For the cognitive issues we see, there is usually a metacognitive cause. Try asking questions like:
      diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 9a49726..0000000 --- a/package-lock.json +++ /dev/null @@ -1,13785 +0,0 @@ -{ - "name": "orchestration-scripting-interfaces", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "dependencies": { - "@chakra-ui/react": "^2.6.1", - "@dnd-kit/core": "^6.0.8", - "@dnd-kit/sortable": "^7.0.2", - "@dnd-kit/utilities": "^3.2.1", - "@emotion/react": "^11.10.6", - "@emotion/server": "^11.10.0", - "@emotion/styled": "^11.11.0", - "@mantine/carousel": "^6.0.0", - "@mantine/core": "^6.0.0", - "@mantine/hooks": "^6.0.0", - "@mantine/next": "^6.0.0", - "@vygruppen/spor-accordion-react": "^1.0.1", - "blockly": "^9.2.1", - "dotenv": "^16.3.1", - "embla-carousel-react": "^7.0.9", - "framer-motion": "^10.12.10", - "mongo": "^0.1.0", - "mongoose": "^7.1.1", - "next": "latest", - "p5": "^1.8.0", - "react": "18.2.0", - "react-beautiful-dnd": "^13.1.1", - "react-blockly": "^7.0.1", - "react-dom": "18.2.0", - "react-modal": "^3.16.1", - "react-sortable-hoc": "^2.0.0", - "reactstrap": "^9.1.6" - }, - "devDependencies": { - "@types/node": "18.13.0", - "@types/p5": "^1.7.3", - "@types/react": "18.0.27", - "@types/react-beautiful-dnd": "^13.1.4", - "@types/react-dom": "18.0.10", - "autoprefixer": "^10.4.13", - "eslint": "^8.33.0", - "eslint-config-next": "^13.1.6", - "eslint-config-prettier": "^8.6.0", - "postcss": "^8.4.21", - "prettier": "^2.8.4", - "tailwindcss": "^3.2.4", - "typescript": "4.9.5" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT" - }, - "node_modules/@babel/highlight/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", - "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz", - "integrity": "sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==", - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@chakra-ui/accordion": { - "version": "2.1.11", - "resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.1.11.tgz", - "integrity": "sha512-mfVPmqETp9pyRDHJ33AdF19oHv/LyxVzQJtlxUByuvs8Cj9QQZ2LQLg5kejm+b3mj03A7A6yfbuo3RNaI4Bhsg==", - "dependencies": { - "@chakra-ui/descendant": "3.0.14", - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.0.16" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/alert": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.1.0.tgz", - "integrity": "sha512-OcfHwoXI5VrmM+tHJTHT62Bx6TfyfCxSa0PWUOueJzSyhlUOKBND5we6UtrOB7D0jwX45qKKEDJOLG5yCG21jQ==", - "dependencies": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/spinner": "2.0.13" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/anatomy": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.1.2.tgz", - "integrity": "sha512-pKfOS/mztc4sUXHNc8ypJ1gPWSolWT770jrgVRfolVbYlki8y5Y+As996zMF6k5lewTu6j9DQequ7Cc9a69IVQ==" - }, - "node_modules/@chakra-ui/avatar": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.2.10.tgz", - "integrity": "sha512-Scc0qJtJcxoGOaSS4TkoC2PhVLMacrBcfaNfLqV6wES56BcsjegHvpxREFunZkgVNph/XRHW6J1xOclnsZiPBQ==", - "dependencies": { - "@chakra-ui/image": "2.0.16", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/breadcrumb": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.1.5.tgz", - "integrity": "sha512-p3eQQrHQBkRB69xOmNyBJqEdfCrMt+e0eOH+Pm/DjFWfIVIbnIaFbmDCeWClqlLa21Ypc6h1hR9jEmvg8kmOog==", - "dependencies": { - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/breakpoint-utils": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.8.tgz", - "integrity": "sha512-Pq32MlEX9fwb5j5xx8s18zJMARNHlQZH2VH1RZgfgRDpp7DcEgtRW5AInfN5CfqdHLO1dGxA7I3MqEuL5JnIsA==", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "node_modules/@chakra-ui/button": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.18.tgz", - "integrity": "sha512-E3c99+lOm6ou4nQVOTLkG+IdOPMjsQK+Qe7VyP8A/xeAMFONuibrWPRPpprr4ZkB4kEoLMfNuyH2+aEza3ScUA==", - "dependencies": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/spinner": "2.0.13" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/card": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/card/-/card-2.1.6.tgz", - "integrity": "sha512-fFd/WAdRNVY/WOSQv4skpy0WeVhhI0f7dTY1Sm0jVl0KLmuP/GnpsWtKtqWjNcV00K963EXDyhlk6+9oxbP4gw==", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/checkbox": { - "version": "2.2.15", - "resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.2.15.tgz", - "integrity": "sha512-Ju2yQjX8azgFa5f6VLPuwdGYobZ+rdbcYqjiks848JvPc75UsPhpS05cb4XlrKT7M16I8txDA5rPJdqqFicHCA==", - "dependencies": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/visually-hidden": "2.0.15", - "@zag-js/focus-visible": "0.2.2" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/clickable": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.14.tgz", - "integrity": "sha512-jfsM1qaD74ZykLHmvmsKRhDyokLUxEfL8Il1VoZMNX5RBI0xW/56vKpLTFF/v/+vLPLS+Te2cZdD4+2O+G6ulA==", - "dependencies": { - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/close-button": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.17.tgz", - "integrity": "sha512-05YPXk456t1Xa3KpqTrvm+7smx+95dmaPiwjiBN3p7LHUQVHJd8ZXSDB0V+WKi419k3cVQeJUdU/azDO2f40sw==", - "dependencies": { - "@chakra-ui/icon": "3.0.16" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/color-mode": { - "version": "2.1.12", - "resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.12.tgz", - "integrity": "sha512-sYyfJGDoJSLYO+V2hxV9r033qhte5Nw/wAn5yRGGZnEEN1dKPEdWQ3XZvglWSDTNd0w9zkoH2w6vP4FBBYb/iw==", - "dependencies": { - "@chakra-ui/react-use-safe-layout-effect": "2.0.5" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/control-box": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.13.tgz", - "integrity": "sha512-FEyrU4crxati80KUF/+1Z1CU3eZK6Sa0Yv7Z/ydtz9/tvGblXW9NFanoomXAOvcIFLbaLQPPATm9Gmpr7VG05A==", - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/counter": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.14.tgz", - "integrity": "sha512-KxcSRfUbb94dP77xTip2myoE7P2HQQN4V5fRJmNAGbzcyLciJ+aDylUU/UxgNcEjawUp6Q242NbWb1TSbKoqog==", - "dependencies": { - "@chakra-ui/number-utils": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/css-reset": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.1.1.tgz", - "integrity": "sha512-jwEOfIAWmQsnChHQTW/eRE+dfE4MjmhvSvoUug5nkV1pI7veC/20noFlIZxzi82EbiQI8Fs0+Jnusgxr2yaOHA==", - "peerDependencies": { - "@emotion/react": ">=10.0.35", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/descendant": { - "version": "3.0.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.14.tgz", - "integrity": "sha512-+Ahvp9H4HMpfScIv9w1vaecGz7qWAaK1YFHHolz/SIsGLaLGlbdp+5UNabQC7L6TUnzzJDQDxzwif78rTD7ang==", - "dependencies": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/dom-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.6.tgz", - "integrity": "sha512-PVtDkPrDD5b8aoL6Atg7SLjkwhWb7BwMcLOF1L449L3nZN+DAO3nyAh6iUhZVJyunELj9d0r65CDlnMREyJZmA==" - }, - "node_modules/@chakra-ui/editable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-3.0.0.tgz", - "integrity": "sha512-q/7C/TM3iLaoQKlEiM8AY565i9NoaXtS6N6N4HWIEL5mZJPbMeHKxrCHUZlHxYuQJqFOGc09ZPD9fAFx1GkYwQ==", - "dependencies": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-focus-on-pointer-down": "2.0.6", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/event-utils": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.8.tgz", - "integrity": "sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw==" - }, - "node_modules/@chakra-ui/focus-lock": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.16.tgz", - "integrity": "sha512-UuAdGCPVrCa1lecoAvpOQD7JFT7a9RdmhKWhFt5ioIcekSLJcerdLHuuL3w0qz//8kd1/SOt7oP0aJqdAJQrCw==", - "dependencies": { - "@chakra-ui/dom-utils": "2.0.6", - "react-focus-lock": "^2.9.2" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/form-control": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.18.tgz", - "integrity": "sha512-I0a0jG01IAtRPccOXSNugyRdUAe8Dy40ctqedZvznMweOXzbMCF1m+sHPLdWeWC/VI13VoAispdPY0/zHOdjsQ==", - "dependencies": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/hooks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.2.0.tgz", - "integrity": "sha512-GZE64mcr20w+3KbCUPqQJHHmiFnX5Rcp8jS3YntGA4D5X2qU85jka7QkjfBwv/iduZ5Ei0YpCMYGCpi91dhD1Q==", - "dependencies": { - "@chakra-ui/react-utils": "2.0.12", - "@chakra-ui/utils": "2.0.15", - "compute-scroll-into-view": "1.0.20", - "copy-to-clipboard": "3.3.3" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/icon": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.16.tgz", - "integrity": "sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg==", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/image": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.16.tgz", - "integrity": "sha512-iFypk1slgP3OK7VIPOtkB0UuiqVxNalgA59yoRM43xLIeZAEZpKngUVno4A2kFS61yKN0eIY4hXD3Xjm+25EJA==", - "dependencies": { - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/input": { - "version": "2.0.22", - "resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.22.tgz", - "integrity": "sha512-dCIC0/Q7mjZf17YqgoQsnXn0bus6vgriTRn8VmxOc+WcVl+KBSTBWujGrS5yu85WIFQ0aeqQvziDnDQybPqAbA==", - "dependencies": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/layout": { - "version": "2.1.19", - "resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.19.tgz", - "integrity": "sha512-g7xMVKbQFCODwKCkEF4/OmdPsr/fAavWUV+DGc1ZWVPdroUlg1FGTpK9bOTwkC/gnko7cMClILA+BIPR3Ylu9Q==", - "dependencies": { - "@chakra-ui/breakpoint-utils": "2.0.8", - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/lazy-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.5.tgz", - "integrity": "sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg==" - }, - "node_modules/@chakra-ui/live-region": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.13.tgz", - "integrity": "sha512-Ja+Slk6ZkxSA5oJzU2VuGU7TpZpbMb/4P4OUhIf2D30ctmIeXkxTWw1Bs1nGJAVtAPcGS5sKA+zb89i8g+0cTQ==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/media-query": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.12.tgz", - "integrity": "sha512-8pSLDf3oxxhFrhd40rs7vSeIBfvOmIKHA7DJlGUC/y+9irD24ZwgmCtFnn+y3gI47hTJsopbSX+wb8nr7XPswA==", - "dependencies": { - "@chakra-ui/breakpoint-utils": "2.0.8", - "@chakra-ui/react-env": "3.0.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/menu": { - "version": "2.1.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.1.14.tgz", - "integrity": "sha512-z4YzlY/ub1hr4Ee2zCnZDs4t43048yLTf5GhEVYDO+SI92WlOfHlP9gYEzR+uj/CiRZglVFwUDKb3UmFtmKPyg==", - "dependencies": { - "@chakra-ui/clickable": "2.0.14", - "@chakra-ui/descendant": "3.0.14", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/popper": "3.0.14", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-animation-state": "2.0.8", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-disclosure": "2.0.8", - "@chakra-ui/react-use-focus-effect": "2.0.10", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-outside-click": "2.1.0", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.0.16" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/modal": { - "version": "2.2.11", - "resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.2.11.tgz", - "integrity": "sha512-2J0ZUV5tEzkPiawdkgPz6bmex7NXAde1VXooMwdvK+vuT8PV3U61yorTJOZVLdw7TjjI1Yo94mzsp6UwBud43Q==", - "dependencies": { - "@chakra-ui/close-button": "2.0.17", - "@chakra-ui/focus-lock": "2.0.16", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.0.16", - "aria-hidden": "^1.2.2", - "react-remove-scroll": "^2.5.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/number-input": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.19.tgz", - "integrity": "sha512-HDaITvtMEqOauOrCPsARDxKD9PSHmhWywpcyCSOX0lMe4xx2aaGhU0QQFhsJsykj8Er6pytMv6t0KZksdDv3YA==", - "dependencies": { - "@chakra-ui/counter": "2.0.14", - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/react-use-event-listener": "2.0.7", - "@chakra-ui/react-use-interval": "2.0.5", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/number-utils": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.7.tgz", - "integrity": "sha512-yOGxBjXNvLTBvQyhMDqGU0Oj26s91mbAlqKHiuw737AXHt0aPllOthVUqQMeaYLwLCjGMg0jtI7JReRzyi94Dg==" - }, - "node_modules/@chakra-ui/object-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.1.0.tgz", - "integrity": "sha512-tgIZOgLHaoti5PYGPTwK3t/cqtcycW0owaiOXoZOcpwwX/vlVb+H1jFsQyWiiwQVPt9RkoSLtxzXamx+aHH+bQ==" - }, - "node_modules/@chakra-ui/pin-input": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.20.tgz", - "integrity": "sha512-IHVmerrtHN8F+jRB3W1HnMir1S1TUCWhI7qDInxqPtoRffHt6mzZgLZ0izx8p1fD4HkW4c1d4/ZLEz9uH9bBRg==", - "dependencies": { - "@chakra-ui/descendant": "3.0.14", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/popover": { - "version": "2.1.11", - "resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.1.11.tgz", - "integrity": "sha512-ntFMKojU+ZIofwSw5IJ+Ur8pN5o+5kf/Fx5r5tCjFZd0DSkrEeJw9i00/UWJ6kYZb+zlpswxriv0FmxBlAF66w==", - "dependencies": { - "@chakra-ui/close-button": "2.0.17", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/popper": "3.0.14", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-animation-state": "2.0.8", - "@chakra-ui/react-use-disclosure": "2.0.8", - "@chakra-ui/react-use-focus-effect": "2.0.10", - "@chakra-ui/react-use-focus-on-pointer-down": "2.0.6", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/popper": { - "version": "3.0.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.14.tgz", - "integrity": "sha512-RDMmmSfjsmHJbVn2agDyoJpTbQK33fxx//njwJdeyM0zTG/3/4xjI/Cxru3acJ2Y+1jFGmPqhO81stFjnbtfIw==", - "dependencies": { - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@popperjs/core": "^2.9.3" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/portal": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.16.tgz", - "integrity": "sha512-bVID0qbQ0l4xq38LdqAN4EKD4/uFkDnXzFwOlviC9sl0dNhzICDb1ltuH/Adl1d2HTMqyN60O3GO58eHy7plnQ==", - "dependencies": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5" - }, - "peerDependencies": { - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/progress": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.1.6.tgz", - "integrity": "sha512-hHh5Ysv4z6bK+j2GJbi/FT9CVyto2PtNUNwBmr3oNMVsoOUMoRjczfXvvYqp0EHr9PCpxqrq7sRwgQXUzhbDSw==", - "dependencies": { - "@chakra-ui/react-context": "2.0.8" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/provider": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.2.4.tgz", - "integrity": "sha512-vz/WMEWhwoITCAkennRNYCeQHsJ6YwB/UjVaAK+61jWY42J7uCsRZ+3nB5rDjQ4m+aqPfTUPof8KLJBrtYrJbw==", - "dependencies": { - "@chakra-ui/css-reset": "2.1.1", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/react-env": "3.0.0", - "@chakra-ui/system": "2.5.7", - "@chakra-ui/utils": "2.0.15" - }, - "peerDependencies": { - "@emotion/react": "^11.0.0", - "@emotion/styled": "^11.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/radio": { - "version": "2.0.22", - "resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.22.tgz", - "integrity": "sha512-GsQ5WAnLwivWl6gPk8P1x+tCcpVakCt5R5T0HumF7DGPXKdJbjS+RaFySrbETmyTJsKY4QrfXn+g8CWVrMjPjw==", - "dependencies": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@zag-js/focus-visible": "0.2.2" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-2.6.1.tgz", - "integrity": "sha512-Lt8c8pLPTz59xxdSuL2FlE7le9MXx4zgjr60UnEc3yjAMjXNTqUAoWHyT4Zn1elCGUPWOedS3rMvp4KTshT+5w==", - "dependencies": { - "@chakra-ui/accordion": "2.1.11", - "@chakra-ui/alert": "2.1.0", - "@chakra-ui/avatar": "2.2.10", - "@chakra-ui/breadcrumb": "2.1.5", - "@chakra-ui/button": "2.0.18", - "@chakra-ui/card": "2.1.6", - "@chakra-ui/checkbox": "2.2.15", - "@chakra-ui/close-button": "2.0.17", - "@chakra-ui/control-box": "2.0.13", - "@chakra-ui/counter": "2.0.14", - "@chakra-ui/css-reset": "2.1.1", - "@chakra-ui/editable": "3.0.0", - "@chakra-ui/focus-lock": "2.0.16", - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/hooks": "2.2.0", - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/image": "2.0.16", - "@chakra-ui/input": "2.0.22", - "@chakra-ui/layout": "2.1.19", - "@chakra-ui/live-region": "2.0.13", - "@chakra-ui/media-query": "3.2.12", - "@chakra-ui/menu": "2.1.14", - "@chakra-ui/modal": "2.2.11", - "@chakra-ui/number-input": "2.0.19", - "@chakra-ui/pin-input": "2.0.20", - "@chakra-ui/popover": "2.1.11", - "@chakra-ui/popper": "3.0.14", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/progress": "2.1.6", - "@chakra-ui/provider": "2.2.4", - "@chakra-ui/radio": "2.0.22", - "@chakra-ui/react-env": "3.0.0", - "@chakra-ui/select": "2.0.19", - "@chakra-ui/skeleton": "2.0.24", - "@chakra-ui/slider": "2.0.24", - "@chakra-ui/spinner": "2.0.13", - "@chakra-ui/stat": "2.0.18", - "@chakra-ui/stepper": "2.2.0", - "@chakra-ui/styled-system": "2.9.0", - "@chakra-ui/switch": "2.0.27", - "@chakra-ui/system": "2.5.7", - "@chakra-ui/table": "2.0.17", - "@chakra-ui/tabs": "2.1.9", - "@chakra-ui/tag": "3.0.0", - "@chakra-ui/textarea": "2.0.19", - "@chakra-ui/theme": "3.1.1", - "@chakra-ui/theme-utils": "2.0.17", - "@chakra-ui/toast": "6.1.3", - "@chakra-ui/tooltip": "2.2.8", - "@chakra-ui/transition": "2.0.16", - "@chakra-ui/utils": "2.0.15", - "@chakra-ui/visually-hidden": "2.0.15" - }, - "peerDependencies": { - "@emotion/react": "^11.0.0", - "@emotion/styled": "^11.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/react-children-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.6.tgz", - "integrity": "sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-context": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.8.tgz", - "integrity": "sha512-tRTKdn6lCTXM6WPjSokAAKCw2ioih7Eg8cNgaYRSwKBck8nkz9YqxgIIEj3dJD7MGtpl24S/SNI98iRWkRwR/A==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-env": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-3.0.0.tgz", - "integrity": "sha512-tfMRO2v508HQWAqSADFrwZgR9oU10qC97oV6zGbjHh9ALP0/IcFR+Bi71KRTveDTm85fMeAzZYGj57P3Dsipkw==", - "dependencies": { - "@chakra-ui/react-use-safe-layout-effect": "2.0.5" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-types": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-types/-/react-types-2.0.7.tgz", - "integrity": "sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-animation-state": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.8.tgz", - "integrity": "sha512-xv9zSF2Rd1mHWQ+m5DLBWeh4atF8qrNvsOs3MNrvxKYBS3f79N3pqcQGrWAEvirXWXfiCeje2VAkEggqFRIo+Q==", - "dependencies": { - "@chakra-ui/dom-utils": "2.0.6", - "@chakra-ui/react-use-event-listener": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-callback-ref": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.7.tgz", - "integrity": "sha512-YjT76nTpfHAK5NxplAlZsQwNju5KmQExnqsWNPFeOR6vvbC34+iPSTr+r91i1Hdy7gBSbevsOsd5Wm6RN3GuMw==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-controllable-state": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.8.tgz", - "integrity": "sha512-F7rdCbLEmRjwwODqWZ3y+mKgSSHPcLQxeUygwk1BkZPXbKkJJKymOIjIynil2cbH7ku3hcSIWRvuhpCcfQWJ7Q==", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-disclosure": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.8.tgz", - "integrity": "sha512-2ir/mHe1YND40e+FyLHnDsnDsBQPwzKDLzfe9GZri7y31oU83JSbHdlAXAhp3bpjohslwavtRCp+S/zRxfO9aQ==", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-event-listener": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.7.tgz", - "integrity": "sha512-4wvpx4yudIO3B31pOrXuTHDErawmwiXnvAN7gLEOVREi16+YGNcFnRJ5X5nRrmB7j2MDUtsEDpRBFfw5Z9xQ5g==", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-focus-effect": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.10.tgz", - "integrity": "sha512-HswfpzjP8gCQM3/fbeR+8wrYqt0B3ChnVTqssnYXqp9Fa/5Y1Kx1ZADUWW93zMs5SF7hIEuNt8uKeh1/3HTcqQ==", - "dependencies": { - "@chakra-ui/dom-utils": "2.0.6", - "@chakra-ui/react-use-event-listener": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-focus-on-pointer-down": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.6.tgz", - "integrity": "sha512-OigXiLRVySn3tyVqJ/rn57WGuukW8TQe8fJYiLwXbcNyAMuYYounvRxvCy2b53sQ7QIZamza0N0jhirbH5FNoQ==", - "dependencies": { - "@chakra-ui/react-use-event-listener": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-interval": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.5.tgz", - "integrity": "sha512-1nbdwMi2K87V6p5f5AseOKif2CkldLaJlq1TOqaPRwb7v3aU9rltBtYdf+fIyuHSToNJUV6wd9budCFdLCl3Fg==", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-latest-ref": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.0.5.tgz", - "integrity": "sha512-3mIuFzMyIo3Ok/D8uhV9voVg7KkrYVO/pwVvNPJOHsDQqCA6DpYE4WDsrIx+fVcwad3Ta7SupexR5PoI+kq6QQ==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-merge-refs": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.7.tgz", - "integrity": "sha512-zds4Uhsc+AMzdH8JDDkLVet9baUBgtOjPbhC5r3A0ZXjZvGhCztFAVE3aExYiVoMPoHLKbLcqvCWE6ioFKz1lw==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-outside-click": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.1.0.tgz", - "integrity": "sha512-JanCo4QtWvMl9ZZUpKJKV62RlMWDFdPCE0Q64a7eWTOQgWWcpyBW7TOYRunQTqrK30FqkYFJCOlAWOtn+6Rw7A==", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-pan-event": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.9.tgz", - "integrity": "sha512-xu35QXkiyrgsHUOnctl+SwNcwf9Rl62uYE5y8soKOZdBm8E+FvZIt2hxUzK1EoekbJCMzEZ0Yv1ZQCssVkSLaQ==", - "dependencies": { - "@chakra-ui/event-utils": "2.0.8", - "@chakra-ui/react-use-latest-ref": "2.0.5", - "framesync": "6.1.2" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-previous": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.5.tgz", - "integrity": "sha512-BIZgjycPE4Xr+MkhKe0h67uHXzQQkBX/u5rYPd65iMGdX1bCkbE0oorZNfOHLKdTmnEb4oVsNvfN6Rfr+Mnbxw==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-safe-layout-effect": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.5.tgz", - "integrity": "sha512-MwAQBz3VxoeFLaesaSEN87reVNVbjcQBDex2WGexAg6hUB6n4gc1OWYH/iXp4tzp4kuggBNhEHkk9BMYXWfhJQ==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-size": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.10.tgz", - "integrity": "sha512-fdIkH14GDnKQrtQfxX8N3gxbXRPXEl67Y3zeD9z4bKKcQUAYIMqs0MsPZY+FMpGQw8QqafM44nXfL038aIrC5w==", - "dependencies": { - "@zag-js/element-size": "0.3.2" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-timeout": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.5.tgz", - "integrity": "sha512-QqmB+jVphh3h/CS60PieorpY7UqSPkrQCB7f7F+i9vwwIjtP8fxVHMmkb64K7VlzQiMPzv12nlID5dqkzlv0mw==", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-update-effect": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.7.tgz", - "integrity": "sha512-vBM2bmmM83ZdDtasWv3PXPznpTUd+FvqBC8J8rxoRmvdMEfrxTiQRBJhiGHLpS9BPLLPQlosN6KdFU97csB6zg==", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-utils": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.12.tgz", - "integrity": "sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw==", - "dependencies": { - "@chakra-ui/utils": "2.0.15" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/select": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.19.tgz", - "integrity": "sha512-eAlFh+JhwtJ17OrB6fO6gEAGOMH18ERNrXLqWbYLrs674Le7xuREgtuAYDoxUzvYXYYTTdOJtVbcHGriI3o6rA==", - "dependencies": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/shared-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz", - "integrity": "sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q==" - }, - "node_modules/@chakra-ui/skeleton": { - "version": "2.0.24", - "resolved": "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.24.tgz", - "integrity": "sha512-1jXtVKcl/jpbrJlc/TyMsFyI651GTXY5ma30kWyTXoby2E+cxbV6OR8GB/NMZdGxbQBax8/VdtYVjI0n+OBqWA==", - "dependencies": { - "@chakra-ui/media-query": "3.2.12", - "@chakra-ui/react-use-previous": "2.0.5", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/slider": { - "version": "2.0.24", - "resolved": "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.24.tgz", - "integrity": "sha512-o3hOaIiTzPMG8yf+HYWbrTmhxABicDViVOvOajRSXDodbZSCk1rZy1nmUeahjVtfVUB1IyJoNcXdn76IqJmhdg==", - "dependencies": { - "@chakra-ui/number-utils": "2.0.7", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-latest-ref": "2.0.5", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-pan-event": "2.0.9", - "@chakra-ui/react-use-size": "2.0.10", - "@chakra-ui/react-use-update-effect": "2.0.7" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/spinner": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.13.tgz", - "integrity": "sha512-T1/aSkVpUIuiYyrjfn1+LsQEG7Onbi1UE9ccS/evgf61Dzy4GgTXQUnDuWFSgpV58owqirqOu6jn/9eCwDlzlg==", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/stat": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.18.tgz", - "integrity": "sha512-wKyfBqhVlIs9bkSerUc6F9KJMw0yTIEKArW7dejWwzToCLPr47u+CtYO6jlJHV6lRvkhi4K4Qc6pyvtJxZ3VpA==", - "dependencies": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/stepper": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/stepper/-/stepper-2.2.0.tgz", - "integrity": "sha512-8ZLxV39oghSVtOUGK8dX8Z6sWVSQiKVmsK4c3OQDa8y2TvxP0VtFD0Z5U1xJlOjQMryZRWhGj9JBc3iQLukuGg==", - "dependencies": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/styled-system": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.9.0.tgz", - "integrity": "sha512-rToN30eOezrTZ5qBHmWqEwsYPenHtc3WU6ODAfMUwNnmCJQiu2erRGv8JwIjmRJnKSOEnNKccI2UXe2EwI6+JA==", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5", - "csstype": "^3.0.11", - "lodash.mergewith": "4.6.2" - } - }, - "node_modules/@chakra-ui/switch": { - "version": "2.0.27", - "resolved": "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.27.tgz", - "integrity": "sha512-z76y2fxwMlvRBrC5W8xsZvo3gP+zAEbT3Nqy5P8uh/IPd5OvDsGeac90t5cgnQTyxMOpznUNNK+1eUZqtLxWnQ==", - "dependencies": { - "@chakra-ui/checkbox": "2.2.15", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/system": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/system/-/system-2.5.7.tgz", - "integrity": "sha512-yB6en7YdJPxKvKY2jJROVwkBE2CLFmHS4ZDx27VdYs0Fa4kGiyDFhJAfnMtLBNDVsTy1NhUHL9aqR63u56QqFg==", - "dependencies": { - "@chakra-ui/color-mode": "2.1.12", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-utils": "2.0.12", - "@chakra-ui/styled-system": "2.9.0", - "@chakra-ui/theme-utils": "2.0.17", - "@chakra-ui/utils": "2.0.15", - "react-fast-compare": "3.2.1" - }, - "peerDependencies": { - "@emotion/react": "^11.0.0", - "@emotion/styled": "^11.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/table": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.17.tgz", - "integrity": "sha512-OScheTEp1LOYvTki2NFwnAYvac8siAhW9BI5RKm5f5ORL2gVJo4I72RUqE0aKe1oboxgm7CYt5afT5PS5cG61A==", - "dependencies": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/tabs": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.9.tgz", - "integrity": "sha512-Yf8e0kRvaGM6jfkJum0aInQ0U3ZlCafmrYYni2lqjcTtThqu+Yosmo3iYlnullXxCw5MVznfrkb9ySvgQowuYg==", - "dependencies": { - "@chakra-ui/clickable": "2.0.14", - "@chakra-ui/descendant": "3.0.14", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/tag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/tag/-/tag-3.0.0.tgz", - "integrity": "sha512-YWdMmw/1OWRwNkG9pX+wVtZio+B89odaPj6XeMn5nfNN8+jyhIEpouWv34+CO9G0m1lupJTxPSfgLAd7cqXZMA==", - "dependencies": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/textarea": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.19.tgz", - "integrity": "sha512-adJk+qVGsFeJDvfn56CcJKKse8k7oMGlODrmpnpTdF+xvlsiTM+1GfaJvgNSpHHuQFdz/A0z1uJtfGefk0G2ZA==", - "dependencies": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/theme": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme/-/theme-3.1.1.tgz", - "integrity": "sha512-VHcG0CPLd9tgvWnajpAGqrAYhx4HwgfK0E9VOrdwa/3bN+AgY/0EAAXzfe0Q0W2MBWzSgaYqZcQ5cDRpYbiYPA==", - "dependencies": { - "@chakra-ui/anatomy": "2.1.2", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/theme-tools": "2.0.17" - }, - "peerDependencies": { - "@chakra-ui/styled-system": ">=2.8.0" - } - }, - "node_modules/@chakra-ui/theme-tools": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.17.tgz", - "integrity": "sha512-Auu38hnihlJZQcPok6itRDBbwof3TpXGYtDPnOvrq4Xp7jnab36HLt7KEXSDPXbtOk3ZqU99pvI1en5LbDrdjg==", - "dependencies": { - "@chakra-ui/anatomy": "2.1.2", - "@chakra-ui/shared-utils": "2.0.5", - "color2k": "^2.0.0" - }, - "peerDependencies": { - "@chakra-ui/styled-system": ">=2.0.0" - } - }, - "node_modules/@chakra-ui/theme-utils": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.17.tgz", - "integrity": "sha512-aUaVLFIU1Rs8m+5WVOUvqHKapOX8nSgUVGaeRWS4odxBM95dG4j15f4L88LEMw4D4+WWd0CSAS139OnRgj1rCw==", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/styled-system": "2.9.0", - "@chakra-ui/theme": "3.1.1", - "lodash.mergewith": "4.6.2" - } - }, - "node_modules/@chakra-ui/toast": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/@chakra-ui/toast/-/toast-6.1.3.tgz", - "integrity": "sha512-dsg/Sdkuq+SCwdOeyzrnBO1ecDA7VKfLFjUtj9QBc/SFEN8r+FQrygy79TNo+QWr7zdjI8icbl8nsp59lpb8ag==", - "dependencies": { - "@chakra-ui/alert": "2.1.0", - "@chakra-ui/close-button": "2.0.17", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-timeout": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/styled-system": "2.9.0", - "@chakra-ui/theme": "3.1.1" - }, - "peerDependencies": { - "@chakra-ui/system": "2.5.7", - "framer-motion": ">=4.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/tooltip": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.2.8.tgz", - "integrity": "sha512-AqtrCkalADrqqd1SgII4n8F0dDABxqxL3e8uj3yC3HDzT3BU/0NSwSQRA2bp9eoJHk07ZMs9kyzvkkBLc0pr2A==", - "dependencies": { - "@chakra-ui/popper": "3.0.14", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-disclosure": "2.0.8", - "@chakra-ui/react-use-event-listener": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/transition": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.16.tgz", - "integrity": "sha512-E+RkwlPc3H7P1crEXmXwDXMB2lqY2LLia2P5siQ4IEnRWIgZXlIw+8Em+NtHNgusel2N+9yuB0wT9SeZZeZ3CQ==", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/utils": { - "version": "2.0.15", - "resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.15.tgz", - "integrity": "sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA==", - "dependencies": { - "@types/lodash.mergewith": "4.6.7", - "css-box-model": "1.2.1", - "framesync": "6.1.2", - "lodash.mergewith": "4.6.2" - } - }, - "node_modules/@chakra-ui/visually-hidden": { - "version": "2.0.15", - "resolved": "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.15.tgz", - "integrity": "sha512-WWULIiucYRBIewHKFA7BssQ2ABLHLVd9lrUo3N3SZgR0u4ZRDDVEUNOy+r+9ruDze8+36dGbN9wsN1IdELtdOw==", - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@dnd-kit/accessibility": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.0.1.tgz", - "integrity": "sha512-HXRrwS9YUYQO9lFRc/49uO/VICbM+O+ZRpFDe9Pd1rwVv2PCNkRiTZRdxrDgng/UkvdC3Re9r2vwPpXXrWeFzg==", - "dependencies": { - "tslib": "^2.0.0" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@dnd-kit/core": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/@dnd-kit/core/-/core-6.0.8.tgz", - "integrity": "sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA==", - "dependencies": { - "@dnd-kit/accessibility": "^3.0.0", - "@dnd-kit/utilities": "^3.2.1", - "tslib": "^2.0.0" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@dnd-kit/sortable": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-7.0.2.tgz", - "integrity": "sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA==", - "dependencies": { - "@dnd-kit/utilities": "^3.2.0", - "tslib": "^2.0.0" - }, - "peerDependencies": { - "@dnd-kit/core": "^6.0.7", - "react": ">=16.8.0" - } - }, - "node_modules/@dnd-kit/utilities": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.1.tgz", - "integrity": "sha512-OOXqISfvBw/1REtkSK2N3Fi2EQiLMlWUlqnOK/UpOISqBZPWpE6TqL+jcPtMOkE8TqYGiURvRdPSI9hltNUjEA==", - "dependencies": { - "tslib": "^2.0.0" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@emotion/babel-plugin": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", - "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", - "dependencies": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/serialize": "^1.1.2", - "babel-plugin-macros": "^3.1.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/stylis": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" - }, - "node_modules/@emotion/cache": { - "version": "11.10.5", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz", - "integrity": "sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==", - "license": "MIT", - "dependencies": { - "@emotion/memoize": "^0.8.0", - "@emotion/sheet": "^1.2.1", - "@emotion/utils": "^1.2.0", - "@emotion/weak-memoize": "^0.3.0", - "stylis": "4.1.3" - } - }, - "node_modules/@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" - }, - "node_modules/@emotion/is-prop-valid": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", - "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", - "dependencies": { - "@emotion/memoize": "^0.8.1" - } - }, - "node_modules/@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" - }, - "node_modules/@emotion/react": { - "version": "11.10.6", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.10.6.tgz", - "integrity": "sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.10.6", - "@emotion/cache": "^11.10.5", - "@emotion/serialize": "^1.1.1", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@emotion/utils": "^1.2.0", - "@emotion/weak-memoize": "^0.3.0", - "hoist-non-react-statics": "^3.3.1" - }, - "peerDependencies": { - "react": ">=16.8.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@emotion/serialize": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz", - "integrity": "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==", - "dependencies": { - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/unitless": "^0.8.1", - "@emotion/utils": "^1.2.1", - "csstype": "^3.0.2" - } - }, - "node_modules/@emotion/server": { - "version": "11.10.0", - "resolved": "https://registry.npmjs.org/@emotion/server/-/server-11.10.0.tgz", - "integrity": "sha512-MTvJ21JPo9aS02GdjFW4nhdwOi2tNNpMmAM/YED0pkxzjDNi5WbiTwXqaCnvLc2Lr8NFtjhT0az1vTJyLIHYcw==", - "license": "MIT", - "dependencies": { - "@emotion/utils": "^1.2.0", - "html-tokenize": "^2.0.0", - "multipipe": "^1.0.2", - "through": "^2.3.8" - }, - "peerDependencies": { - "@emotion/css": "^11.0.0-rc.0" - }, - "peerDependenciesMeta": { - "@emotion/css": { - "optional": true - } - } - }, - "node_modules/@emotion/sheet": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz", - "integrity": "sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==", - "license": "MIT" - }, - "node_modules/@emotion/styled": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz", - "integrity": "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==", - "dependencies": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.11.0", - "@emotion/is-prop-valid": "^1.2.1", - "@emotion/serialize": "^1.1.2", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@emotion/utils": "^1.2.1" - }, - "peerDependencies": { - "@emotion/react": "^11.0.0-rc.0", - "react": ">=16.8.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@emotion/unitless": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" - }, - "node_modules/@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", - "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@emotion/utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", - "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" - }, - "node_modules/@emotion/weak-memoize": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz", - "integrity": "sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==", - "license": "MIT" - }, - "node_modules/@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@floating-ui/core": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.2.2.tgz", - "integrity": "sha512-FaO9KVLFnxknZaGWGmNtjD2CVFuc0u4yeGEofoyXO2wgRA7fLtkngT6UB0vtWQWuhH3iMTZZ/Y89CMeyGfn8pA==", - "license": "MIT" - }, - "node_modules/@floating-ui/dom": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.2.3.tgz", - "integrity": "sha512-lK9cZUrHSJLMVAdCvDqs6Ug8gr0wmqksYiaoj/bxj2gweRQkSuhg2/V6Jswz2KiQ0RAULbqw1oQDJIMpQ5GfGA==", - "license": "MIT", - "dependencies": { - "@floating-ui/core": "^1.2.2" - } - }, - "node_modules/@floating-ui/react": { - "version": "0.19.2", - "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.19.2.tgz", - "integrity": "sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w==", - "license": "MIT", - "dependencies": { - "@floating-ui/react-dom": "^1.3.0", - "aria-hidden": "^1.1.3", - "tabbable": "^6.0.1" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@floating-ui/react-dom": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-1.3.0.tgz", - "integrity": "sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==", - "license": "MIT", - "dependencies": { - "@floating-ui/dom": "^1.2.1" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/@mantine/carousel": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/carousel/-/carousel-6.0.0.tgz", - "integrity": "sha512-rRK6ikSonMUk9i5mCqbhlTAG6r7obU7xnIaV0a1bBvwYMsgxRUVlDTO6od7cULXl5REa8xbSQkXsqjbP3fMgeg==", - "license": "MIT", - "dependencies": { - "@mantine/utils": "6.0.0" - }, - "peerDependencies": { - "@mantine/core": "6.0.0", - "@mantine/hooks": "6.0.0", - "embla-carousel-react": "^7.0.0", - "react": ">=16.8.0" - } - }, - "node_modules/@mantine/core": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/core/-/core-6.0.0.tgz", - "integrity": "sha512-ik2NUAAn9fYcqmOAluGtI9R73ijrr450dZDA+MezKq/dvpUU/Fhl9yXnGoCxxZ5XF6y4i6q07318rdrVturc9w==", - "license": "MIT", - "dependencies": { - "@floating-ui/react": "^0.19.1", - "@mantine/styles": "6.0.0", - "@mantine/utils": "6.0.0", - "@radix-ui/react-scroll-area": "1.0.2", - "react-remove-scroll": "^2.5.5", - "react-textarea-autosize": "8.3.4" - }, - "peerDependencies": { - "@mantine/hooks": "6.0.0", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@mantine/hooks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/hooks/-/hooks-6.0.0.tgz", - "integrity": "sha512-boszkajLaA4qvd/ebDhqZBbMuUXlvJv8EM0jTaXz09IaGPachBKG5WKpXEcwWh2qmrUQL6pyhIbLMgPnvwS0QQ==", - "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@mantine/next": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/next/-/next-6.0.0.tgz", - "integrity": "sha512-hJdTi0aLJdwnjavfyxuKnpkbpAhjr4xdGBm9wIWwjHC+wdav9x4oo3/6ZO1sK1+3ENWEgU7ahyYu0fws2d0AZQ==", - "license": "MIT", - "dependencies": { - "@mantine/ssr": "6.0.0", - "@mantine/styles": "6.0.0" - }, - "peerDependencies": { - "next": "*", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@mantine/ssr": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/ssr/-/ssr-6.0.0.tgz", - "integrity": "sha512-/kGRSDWw6YZ23AwsZsLR5O7nQgaWPldc9U1G0NGvHWVB6dbkX8Jb08ByQAvem1Fjq7kxnuConuU5lUKMCiRAHA==", - "license": "MIT", - "dependencies": { - "@mantine/styles": "6.0.0", - "html-react-parser": "1.4.12" - }, - "peerDependencies": { - "@emotion/react": ">=11.9.0", - "@emotion/server": ">=11.4.0", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@mantine/styles": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/styles/-/styles-6.0.0.tgz", - "integrity": "sha512-TyqFvdKIhbhnGYBDEJ9QIPit4NzyzQ3ivDfdzeqzd/cJBxFPhxB0sEFU8RppXpXBUlbhLFhulYFEVl2pP6zaeg==", - "license": "MIT", - "dependencies": { - "clsx": "1.1.1", - "csstype": "3.0.9" - }, - "peerDependencies": { - "@emotion/react": ">=11.9.0", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@mantine/styles/node_modules/csstype": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", - "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==", - "license": "MIT" - }, - "node_modules/@mantine/utils": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/utils/-/utils-6.0.0.tgz", - "integrity": "sha512-1AalSgzINKP4uv1DBTkJe/jh6yGwC2xaCQE4Atlr2bSHiLezYFMy/deGQ8XLFFv2AL0sjvewLW4ernlFujGMZg==", - "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@mongodb-js/saslprep": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.1.tgz", - "integrity": "sha512-t7c5K033joZZMspnHg/gWPE4kandgc2OxE74aYOtGKfgB9VPuVJPix0H6fhmm2erj5PBJ21mqcx34lpIGtUCsQ==", - "dependencies": { - "sparse-bitfield": "^3.0.3" - } - }, - "node_modules/@next/env": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.2.3.tgz", - "integrity": "sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow==" - }, - "node_modules/@next/eslint-plugin-next": { - "version": "13.1.6", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.6.tgz", - "integrity": "sha512-o7cauUYsXjzSJkay8wKjpKJf2uLzlggCsGUkPu3lP09Pv97jYlekTC20KJrjQKmSv5DXV0R/uks2ZXhqjNkqAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "glob": "7.1.7" - } - }, - "node_modules/@next/swc-android-arm-eabi": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.3.tgz", - "integrity": "sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-android-arm64": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-13.2.3.tgz", - "integrity": "sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.3.tgz", - "integrity": "sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.3.tgz", - "integrity": "sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-freebsd-x64": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.3.tgz", - "integrity": "sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm-gnueabihf": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.3.tgz", - "integrity": "sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.3.tgz", - "integrity": "sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.3.tgz", - "integrity": "sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.3.tgz", - "integrity": "sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.3.tgz", - "integrity": "sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.3.tgz", - "integrity": "sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.3.tgz", - "integrity": "sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.3.tgz", - "integrity": "sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgr/utils": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", - "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "is-glob": "^4.0.3", - "open": "^8.4.0", - "picocolors": "^1.0.0", - "tiny-glob": "^0.2.9", - "tslib": "^2.4.0" - }, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.6", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", - "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@radix-ui/number": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.0.tgz", - "integrity": "sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - } - }, - "node_modules/@radix-ui/primitive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.0.tgz", - "integrity": "sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - } - }, - "node_modules/@radix-ui/react-compose-refs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz", - "integrity": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-context": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.0.tgz", - "integrity": "sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-direction": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.0.tgz", - "integrity": "sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-presence": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.0.tgz", - "integrity": "sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.0", - "@radix-ui/react-use-layout-effect": "1.0.0" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz", - "integrity": "sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-slot": "1.0.1" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-scroll-area": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz", - "integrity": "sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/number": "1.0.0", - "@radix-ui/primitive": "1.0.0", - "@radix-ui/react-compose-refs": "1.0.0", - "@radix-ui/react-context": "1.0.0", - "@radix-ui/react-direction": "1.0.0", - "@radix-ui/react-presence": "1.0.0", - "@radix-ui/react-primitive": "1.0.1", - "@radix-ui/react-use-callback-ref": "1.0.0", - "@radix-ui/react-use-layout-effect": "1.0.0" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-slot": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz", - "integrity": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.0" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-use-callback-ref": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz", - "integrity": "sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-use-layout-effect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz", - "integrity": "sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", - "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@swc/helpers": { - "version": "0.4.14", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz", - "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", - "license": "MIT", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", - "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", - "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/lodash": { - "version": "4.14.194", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz", - "integrity": "sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g==" - }, - "node_modules/@types/lodash.mergewith": { - "version": "4.6.7", - "resolved": "https://registry.npmjs.org/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz", - "integrity": "sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==", - "dependencies": { - "@types/lodash": "*" - } - }, - "node_modules/@types/node": { - "version": "18.13.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.13.0.tgz", - "integrity": "sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg==", - "license": "MIT" - }, - "node_modules/@types/p5": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@types/p5/-/p5-1.7.3.tgz", - "integrity": "sha512-sYeos5Zbb5dx4jp5uDnZDtW3St6+9RtLCi7n2Rl6Ok2a5ofRIWDbXEigl++ppqgAyB20S8czlrrrmzLS1AwJPA==", - "dev": true - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "license": "MIT" - }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "18.0.27", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.27.tgz", - "integrity": "sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA==", - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-beautiful-dnd": { - "version": "13.1.4", - "resolved": "https://registry.npmjs.org/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.4.tgz", - "integrity": "sha512-4bIBdzOr0aavN+88q3C7Pgz+xkb7tz3whORYrmSj77wfVEMfiWiooIwVWFR7KM2e+uGTe5BVrXqSfb0aHeflJA==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-dom": { - "version": "18.0.10", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.10.tgz", - "integrity": "sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-redux": { - "version": "7.1.25", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.25.tgz", - "integrity": "sha512-bAGh4e+w5D8dajd6InASVIyCo4pZLJ66oLb80F9OBLO1gKESbZcRCJpTT6uLXX+HAB57zw1WTdwJdAsewuTweg==", - "dependencies": { - "@types/hoist-non-react-statics": "^3.3.0", - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0", - "redux": "^4.0.0" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", - "license": "MIT" - }, - "node_modules/@types/webidl-conversions": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.2.tgz", - "integrity": "sha512-uNv6b/uGRLlCVmelat2rA8bcVd3k/42mV2EmjhPh6JLkd35T5bgwR/t6xy7a9MWhd9sixIeBUzhBenvk3NO+DQ==" - }, - "node_modules/@types/whatwg-url": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", - "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", - "dependencies": { - "@types/node": "*", - "@types/webidl-conversions": "*" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.51.0.tgz", - "integrity": "sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/scope-manager": "5.51.0", - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/typescript-estree": "5.51.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz", - "integrity": "sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/visitor-keys": "5.51.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz", - "integrity": "sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz", - "integrity": "sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/visitor-keys": "5.51.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz", - "integrity": "sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "5.51.0", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@vygruppen/spor-accordion-react": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vygruppen/spor-accordion-react/-/spor-accordion-react-1.0.1.tgz", - "integrity": "sha512-HakCVEknnh6w24QEp/maU01/m1XP6EZhN5Xq7ITw3EJWBNzfYZ2k4U/NM1+Xm+/NdLpsIMyuHWL8RS2o/PKW2g==", - "peerDependencies": { - "@chakra-ui/react": "^2.3.5", - "@emotion/react": "^11.10.4", - "@emotion/styled": "^11.10.4", - "framer-motion": ">6.0.0", - "react": "^18.2.0", - "react-dom": "^18.2.0" - } - }, - "node_modules/@zag-js/element-size": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.3.2.tgz", - "integrity": "sha512-bVvvigUGvAuj7PCkE5AbzvTJDTw5f3bg9nQdv+ErhVN8SfPPppLJEmmWdxqsRzrHXgx8ypJt/+Ty0kjtISVDsQ==" - }, - "node_modules/@zag-js/focus-visible": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-0.2.2.tgz", - "integrity": "sha512-0j2gZq8HiZ51z4zNnSkF1iSkqlwRDvdH+son3wHdoz+7IUdMN/5Exd4TxMJ+gq2Of1DiXReYLL9qqh2PdQ4wgA==" - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "license": "BSD-3-Clause" - }, - "node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", - "license": "MIT", - "dependencies": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" - } - }, - "node_modules/acorn-globals/node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - } - }, - "node_modules/acorn-node/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true, - "license": "MIT" - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/aria-hidden": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.2.tgz", - "integrity": "sha512-6y/ogyDTk/7YAe91T3E2PR1ALVKyM2QbTio5HwM+N1Q6CMlCKhvClyIjkckBswa0f2xJhjsfzIGa1yVSe1UMVA==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", - "react": "^16.9.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "deep-equal": "^2.0.5" - } - }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", - "dev": true, - "license": "ISC" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "license": "MIT" - }, - "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - } - ], - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axe-core": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", - "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", - "dev": true, - "license": "MPL-2.0", - "engines": { - "node": ">=4" - } - }, - "node_modules/axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "deep-equal": "^2.0.5" - } - }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - }, - "engines": { - "node": ">=10", - "npm": ">=6" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/blockly": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/blockly/-/blockly-9.2.1.tgz", - "integrity": "sha512-8iy7keOE6A3lk+PIaDOIxuzv7eXUJqNKNNn1NXkd/246YSa8DkkfgaZ3eEskejkfm/uRgi8Y4HSU1dQRCfN+Hw==", - "license": "Apache-2.0", - "dependencies": { - "jsdom": "20.0.3" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bson": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/bson/-/bson-6.2.0.tgz", - "integrity": "sha512-ID1cI+7bazPDyL9wYy9GaQ8gEEohWvcUl/Yf0dIdutJxnmInEEyCsb4awy/OiBfall7zBA179Pahi3vCdFze3Q==", - "engines": { - "node": ">=16.20.1" - } - }, - "node_modules/buffer-from": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz", - "integrity": "sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==", - "license": "MIT" - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001451", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz", - "integrity": "sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", - "license": "MIT" - }, - "node_modules/clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/color2k": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", - "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/compute-scroll-into-view": { - "version": "1.0.20", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz", - "integrity": "sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true, - "license": "MIT" - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "license": "MIT" - }, - "node_modules/copy-to-clipboard": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", - "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", - "dependencies": { - "toggle-selection": "^1.0.6" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "license": "MIT" - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "license": "MIT", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-box-model": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", - "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", - "dependencies": { - "tiny-invariant": "^1.0.6" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", - "license": "MIT" - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "license": "MIT", - "dependencies": { - "cssom": "~0.3.6" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "license": "MIT" - }, - "node_modules/csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==", - "license": "MIT" - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", - "license": "MIT", - "dependencies": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "license": "MIT" - }, - "node_modules/deep-equal": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "license": "MIT" - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/defined": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", - "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", - "license": "MIT" - }, - "node_modules/detective": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", - "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", - "dev": true, - "license": "MIT", - "dependencies": { - "acorn-node": "^1.8.2", - "defined": "^1.0.0", - "minimist": "^1.2.6" - }, - "bin": { - "detective": "bin/detective.js" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true, - "license": "MIT" - }, - "node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", - "license": "MIT", - "dependencies": { - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" - } - }, - "node_modules/duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", - "license": "BSD-3-Clause", - "dependencies": { - "readable-stream": "^2.0.2" - } - }, - "node_modules/duplexer2/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "license": "MIT" - }, - "node_modules/duplexer2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/duplexer2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.4.289", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.289.tgz", - "integrity": "sha512-relLdMfPBxqGCxy7Gyfm1HcbRPcFUJdlgnCPVgQ23sr1TvUrRJz0/QPoGP0+x41wOVSTN/Wi3w6YDgHiHJGOzg==", - "dev": true, - "license": "ISC" - }, - "node_modules/embla-carousel": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-7.0.9.tgz", - "integrity": "sha512-g8pGPd1BxexiZgw8F1aNM1KL3x3eEcz6TGTz20AuqCCynASBV7/h1+aS2rySDc/hHkXqbU8dk7TDhW71LCqVkQ==", - "license": "MIT" - }, - "node_modules/embla-carousel-react": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-7.0.9.tgz", - "integrity": "sha512-KGnnZWukN+N2H6VjQf6C9mWmInqtCIiInhkGsJ9ckxri3m3Ks6wRDz+RRlV1kcuPHtRoxyFuBBGNwftWqMO9Pw==", - "license": "MIT", - "dependencies": { - "embla-carousel": "7.0.9" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.1 || ^18.0.0" - } - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, - "license": "MIT" - }, - "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/entities": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.21.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", - "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.3", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.4", - "is-array-buffer": "^3.0.1", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dev": true, - "license": "MIT", - "dependencies": { - "has": "^1.0.3" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", - "license": "BSD-2-Clause", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "license": "MIT", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint": { - "version": "8.33.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.33.0.tgz", - "integrity": "sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint/eslintrc": "^1.4.1", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-next": { - "version": "13.1.6", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.1.6.tgz", - "integrity": "sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@next/eslint-plugin-next": "13.1.6", - "@rushstack/eslint-patch": "^1.1.3", - "@typescript-eslint/parser": "^5.42.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.31.7", - "eslint-plugin-react-hooks": "^4.5.0" - }, - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", - "typescript": ">=3.3.1" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-config-prettier": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz", - "integrity": "sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==", - "dev": true, - "license": "MIT", - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz", - "integrity": "sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.10.0", - "get-tsconfig": "^4.2.0", - "globby": "^13.1.2", - "is-core-module": "^2.10.0", - "is-glob": "^4.0.3", - "synckit": "^0.8.4" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-module-utils/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "has": "^1.0.3", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.6", - "resolve": "^1.22.1", - "semver": "^6.3.0", - "tsconfig-paths": "^3.14.1" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/eslint/node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/exenv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "license": "MIT" - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "license": "MIT", - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", - "license": "MIT" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/focus-lock": { - "version": "0.11.6", - "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.6.tgz", - "integrity": "sha512-KSuV3ur4gf2KqMNoZx3nXNVhqCkn42GuTYCX4tXPEwf0MjpFQmNMiN6m7dXaUXgIoivL6/65agoUMg4RLS0Vbg==", - "dependencies": { - "tslib": "^2.0.3" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://www.patreon.com/infusion" - } - }, - "node_modules/framer-motion": { - "version": "10.12.10", - "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-10.12.10.tgz", - "integrity": "sha512-f/VkrpxfG4xSmBi105/NCfcTt219IgglQEUR0BsuFZAg+be6N3QAcujFyBEvBvbDOSP9Ccv6OMiaY0HFMnBoMA==", - "dependencies": { - "tslib": "^2.4.0" - }, - "optionalDependencies": { - "@emotion/is-prop-valid": "^0.8.2" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } - } - }, - "node_modules/framer-motion/node_modules/@emotion/is-prop-valid": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", - "optional": true, - "dependencies": { - "@emotion/memoize": "0.7.4" - } - }, - "node_modules/framer-motion/node_modules/@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==", - "optional": true - }, - "node_modules/framesync": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz", - "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==", - "dependencies": { - "tslib": "2.4.0" - } - }, - "node_modules/framesync/node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true, - "license": "ISC" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "license": "MIT" - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-tsconfig": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.4.0.tgz", - "integrity": "sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globalyzer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", - "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/globby": { - "version": "13.1.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", - "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", - "dev": true, - "license": "MIT", - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", - "dev": true, - "license": "MIT" - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true, - "license": "ISC" - }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "license": "BSD-3-Clause", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/html-dom-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.2.0.tgz", - "integrity": "sha512-2HIpFMvvffsXHFUFjso0M9LqM+1Lm22BF+Df2ba+7QHJXjk63pWChEnI6YG27eaWqUdfnh5/Vy+OXrNTtepRsg==", - "license": "MIT", - "dependencies": { - "domhandler": "4.3.1", - "htmlparser2": "7.2.0" - } - }, - "node_modules/html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "license": "MIT", - "dependencies": { - "whatwg-encoding": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/html-react-parser": { - "version": "1.4.12", - "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.12.tgz", - "integrity": "sha512-nqYQzr4uXh67G9ejAG7djupTHmQvSTgjY83zbXLRfKHJ0F06751jXx6WKSFARDdXxCngo2/7H4Rwtfeowql4gQ==", - "license": "MIT", - "dependencies": { - "domhandler": "4.3.1", - "html-dom-parser": "1.2.0", - "react-property": "2.0.0", - "style-to-js": "1.1.0" - }, - "peerDependencies": { - "react": "0.14 || 15 || 16 || 17 || 18" - } - }, - "node_modules/html-tokenize": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-tokenize/-/html-tokenize-2.0.1.tgz", - "integrity": "sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w==", - "license": "MIT", - "dependencies": { - "buffer-from": "~0.1.1", - "inherits": "~2.0.1", - "minimist": "~1.2.5", - "readable-stream": "~1.0.27-1", - "through2": "~0.4.1" - }, - "bin": { - "html-tokenize": "bin/cmd.js" - } - }, - "node_modules/html-tokenize/node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/htmlparser2": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", - "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.2", - "domutils": "^2.8.0", - "entities": "^3.0.1" - } - }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", - "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "license": "MIT", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "license": "ISC" - }, - "node_modules/inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", - "license": "MIT" - }, - "node_modules/internal-slot": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz", - "integrity": "sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz", - "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "license": "MIT" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "license": "MIT", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "license": "MIT", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "license": "MIT" - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true, - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" - }, - "node_modules/js-sdsl": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", - "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", - "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", - "license": "MIT", - "dependencies": { - "abab": "^2.0.6", - "acorn": "^8.8.1", - "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "license": "MIT" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.3" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/kareem": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz", - "integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==", - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "language-subtag-registry": "~0.3.2" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/levn/node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/levn/node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "license": "MIT" - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.mergewith": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", - "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "license": "MIT", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/memoize-one": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", - "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" - }, - "node_modules/memory-pager": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", - "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "license": "MIT", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/mongo": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/mongo/-/mongo-0.1.0.tgz", - "integrity": "sha512-2MPq+GCNKhah0V/g/HIQI/S1h6Ycd87KPuXAITkeXWT6wncvABFxOaXdzCKlRvLSQRUkDimllrRrhoHUTD8usg==", - "dependencies": { - "mongodb": "*" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/mongodb": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.2.0.tgz", - "integrity": "sha512-d7OSuGjGWDZ5usZPqfvb36laQ9CPhnWkAGHT61x5P95p/8nMVeH8asloMwW6GcYFeB0Vj4CB/1wOTDG2RA9BFA==", - "dependencies": { - "@mongodb-js/saslprep": "^1.1.0", - "bson": "^6.2.0", - "mongodb-connection-string-url": "^2.6.0" - }, - "engines": { - "node": ">=16.20.1" - }, - "peerDependencies": { - "@aws-sdk/credential-providers": "^3.188.0", - "@mongodb-js/zstd": "^1.1.0", - "gcp-metadata": "^5.2.0", - "kerberos": "^2.0.1", - "mongodb-client-encryption": ">=6.0.0 <7", - "snappy": "^7.2.2", - "socks": "^2.7.1" - }, - "peerDependenciesMeta": { - "@aws-sdk/credential-providers": { - "optional": true - }, - "@mongodb-js/zstd": { - "optional": true - }, - "gcp-metadata": { - "optional": true - }, - "kerberos": { - "optional": true - }, - "mongodb-client-encryption": { - "optional": true - }, - "snappy": { - "optional": true - }, - "socks": { - "optional": true - } - } - }, - "node_modules/mongodb-connection-string-url": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz", - "integrity": "sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==", - "dependencies": { - "@types/whatwg-url": "^8.2.1", - "whatwg-url": "^11.0.0" - } - }, - "node_modules/mongoose": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.6.4.tgz", - "integrity": "sha512-kadPkS/f5iZJrrMxxOvSoOAErXmdnb28lMvHmuYgmV1ZQTpRqpp132PIPHkJMbG4OC2H0eSXYw/fNzYTH+LUcw==", - "dependencies": { - "bson": "^5.5.0", - "kareem": "2.5.1", - "mongodb": "5.9.0", - "mpath": "0.9.0", - "mquery": "5.0.0", - "ms": "2.1.3", - "sift": "16.0.1" - }, - "engines": { - "node": ">=14.20.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mongoose" - } - }, - "node_modules/mongoose/node_modules/bson": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/bson/-/bson-5.5.1.tgz", - "integrity": "sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==", - "engines": { - "node": ">=14.20.1" - } - }, - "node_modules/mongoose/node_modules/mongodb": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.9.0.tgz", - "integrity": "sha512-g+GCMHN1CoRUA+wb1Agv0TI4YTSiWr42B5ulkiAfLLHitGK1R+PkSAf3Lr5rPZwi/3F04LiaZEW0Kxro9Fi2TA==", - "dependencies": { - "bson": "^5.5.0", - "mongodb-connection-string-url": "^2.6.0", - "socks": "^2.7.1" - }, - "engines": { - "node": ">=14.20.1" - }, - "optionalDependencies": { - "@mongodb-js/saslprep": "^1.1.0" - }, - "peerDependencies": { - "@aws-sdk/credential-providers": "^3.188.0", - "@mongodb-js/zstd": "^1.0.0", - "kerberos": "^1.0.0 || ^2.0.0", - "mongodb-client-encryption": ">=2.3.0 <3", - "snappy": "^7.2.2" - }, - "peerDependenciesMeta": { - "@aws-sdk/credential-providers": { - "optional": true - }, - "@mongodb-js/zstd": { - "optional": true - }, - "kerberos": { - "optional": true - }, - "mongodb-client-encryption": { - "optional": true - }, - "snappy": { - "optional": true - } - } - }, - "node_modules/mongoose/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/mpath": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", - "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/mquery": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", - "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", - "dependencies": { - "debug": "4.x" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "license": "MIT" - }, - "node_modules/multipipe": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz", - "integrity": "sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ==", - "license": "MIT", - "dependencies": { - "duplexer2": "^0.1.2", - "object-assign": "^4.1.0" - } - }, - "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" - }, - "node_modules/next": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/next/-/next-13.2.3.tgz", - "integrity": "sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w==", - "dependencies": { - "@next/env": "13.2.3", - "@swc/helpers": "0.4.14", - "caniuse-lite": "^1.0.30001406", - "postcss": "8.4.14", - "styled-jsx": "5.1.1" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=14.6.0" - }, - "optionalDependencies": { - "@next/swc-android-arm-eabi": "13.2.3", - "@next/swc-android-arm64": "13.2.3", - "@next/swc-darwin-arm64": "13.2.3", - "@next/swc-darwin-x64": "13.2.3", - "@next/swc-freebsd-x64": "13.2.3", - "@next/swc-linux-arm-gnueabihf": "13.2.3", - "@next/swc-linux-arm64-gnu": "13.2.3", - "@next/swc-linux-arm64-musl": "13.2.3", - "@next/swc-linux-x64-gnu": "13.2.3", - "@next/swc-linux-x64-musl": "13.2.3", - "@next/swc-win32-arm64-msvc": "13.2.3", - "@next/swc-win32-ia32-msvc": "13.2.3", - "@next/swc-win32-x64-msvc": "13.2.3" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.4.0", - "fibers": ">= 3.1.0", - "node-sass": "^6.0.0 || ^7.0.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "sass": "^1.3.0" - }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/next/node_modules/postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", - "dev": true, - "license": "MIT" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nwsapi": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", - "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", - "license": "MIT" - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "license": "MIT", - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/optionator/node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/optionator/node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p5": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/p5/-/p5-1.8.0.tgz", - "integrity": "sha512-LHzRRl+aWEZVXmK+L9TDRNw5zm90wvwMdY7yTmsFkdNeXrU9n2KSZbonCTXkyGgriguovxJrDDgyhkynOxWB1A==" - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "license": "MIT", - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "license": "MIT" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", - "dev": true, - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-js": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", - "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } - }, - "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dev": true, - "license": "MIT", - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - }, - "engines": { - "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-nested": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", - "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", - "dev": true, - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", - "dev": true, - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.8.4", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.4.tgz", - "integrity": "sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==", - "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "license": "MIT" - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "license": "MIT" - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "license": "MIT" - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/raf-schd": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz", - "integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==" - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-beautiful-dnd": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz", - "integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==", - "dependencies": { - "@babel/runtime": "^7.9.2", - "css-box-model": "^1.2.0", - "memoize-one": "^5.1.1", - "raf-schd": "^4.0.2", - "react-redux": "^7.2.0", - "redux": "^4.0.4", - "use-memo-one": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.5 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-blockly": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/react-blockly/-/react-blockly-7.0.1.tgz", - "integrity": "sha512-Lsteh2KmCjwMk/bRFPFTEnc0ylpgseLC1S9S/fs8kE8vnABJFq385G9X+WHtJ8Txpd/YhODdIhZ+rlU4EavasA==", - "license": "MIT", - "dependencies": { - "blockly": ">= 3.20200024.0", - "prop-types": ">= 15.6.0" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/react-clientside-effect": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz", - "integrity": "sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==", - "dependencies": { - "@babel/runtime": "^7.12.13" - }, - "peerDependencies": { - "react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-fast-compare": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.1.tgz", - "integrity": "sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==" - }, - "node_modules/react-focus-lock": { - "version": "2.9.4", - "resolved": "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-2.9.4.tgz", - "integrity": "sha512-7pEdXyMseqm3kVjhdVH18sovparAzLg5h6WvIx7/Ck3ekjhrrDMEegHSa3swwC8wgfdd7DIdUVRGeiHT9/7Sgg==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "focus-lock": "^0.11.6", - "prop-types": "^15.6.2", - "react-clientside-effect": "^1.2.6", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "license": "MIT" - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-modal": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz", - "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==", - "dependencies": { - "exenv": "^1.2.0", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.0", - "warning": "^4.0.3" - }, - "engines": { - "node": ">=8" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", - "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" - } - }, - "node_modules/react-popper": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "dependencies": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" - }, - "peerDependencies": { - "@popperjs/core": "^2.0.0", - "react": "^16.8.0 || ^17 || ^18", - "react-dom": "^16.8.0 || ^17 || ^18" - } - }, - "node_modules/react-property": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz", - "integrity": "sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==", - "license": "MIT" - }, - "node_modules/react-redux": { - "version": "7.2.9", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", - "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", - "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "peerDependencies": { - "react": "^16.8.3 || ^17 || ^18" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/react-redux/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/react-remove-scroll": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", - "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", - "license": "MIT", - "dependencies": { - "react-remove-scroll-bar": "^2.3.3", - "react-style-singleton": "^2.2.1", - "tslib": "^2.1.0", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-remove-scroll-bar": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz", - "integrity": "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==", - "license": "MIT", - "dependencies": { - "react-style-singleton": "^2.2.1", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-sortable-hoc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz", - "integrity": "sha512-JZUw7hBsAHXK7PTyErJyI7SopSBFRcFHDjWW5SWjcugY0i6iH7f+eJkY8cJmGMlZ1C9xz1J3Vjz0plFpavVeRg==", - "dependencies": { - "@babel/runtime": "^7.2.0", - "invariant": "^2.2.4", - "prop-types": "^15.5.7" - }, - "peerDependencies": { - "prop-types": "^15.5.7", - "react": "^16.3.0 || ^17.0.0", - "react-dom": "^16.3.0 || ^17.0.0" - } - }, - "node_modules/react-style-singleton": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", - "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", - "license": "MIT", - "dependencies": { - "get-nonce": "^1.0.0", - "invariant": "^2.2.4", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-textarea-autosize": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz", - "integrity": "sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.10.2", - "use-composed-ref": "^1.3.0", - "use-latest": "^1.2.1" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/reactstrap": { - "version": "9.1.6", - "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-9.1.6.tgz", - "integrity": "sha512-79h/L/pvMJIz198VULMpLbEyXFeArFTLAnEtk5anppJhAnZnfyM1pNuQWZNGXy6cUlgsaEy2gBziAw4tockOnw==", - "dependencies": { - "@babel/runtime": "^7.12.5", - "@popperjs/core": "^2.6.0", - "classnames": "^2.2.3", - "prop-types": "^15.5.8", - "react-popper": "^2.2.4", - "react-transition-group": "^4.4.2" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/readable-stream/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "license": "MIT" - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "license": "MIT" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "license": "MIT" - }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "license": "MIT" - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "license": "MIT" - }, - "node_modules/saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", - "license": "ISC", - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=v12.22.7" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/sift": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz", - "integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==" - }, - "node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sparse-bitfield": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", - "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", - "dependencies": { - "memory-pager": "^1.0.2" - } - }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "internal-slot": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "license": "MIT" - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/style-to-js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.0.tgz", - "integrity": "sha512-1OqefPDxGrlMwcbfpsTVRyzwdhr4W0uxYQzeA2F1CBc8WG04udg2+ybRnvh3XYL4TdHQrCahLtax2jc8xaE6rA==", - "license": "MIT", - "dependencies": { - "style-to-object": "0.3.0" - } - }, - "node_modules/style-to-object": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", - "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", - "license": "MIT", - "dependencies": { - "inline-style-parser": "0.1.1" - } - }, - "node_modules/styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "license": "MIT", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/stylis": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", - "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==", - "license": "MIT" - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "license": "MIT" - }, - "node_modules/synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/tabbable": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.1.1.tgz", - "integrity": "sha512-4kl5w+nCB44EVRdO0g/UGoOp3vlwgycUVtkk/7DPyeLZUCuNFFKCFG6/t/DgHLrUPHjrZg6s5tNm+56Q2B0xyg==", - "license": "MIT" - }, - "node_modules/tailwindcss": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz", - "integrity": "sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.1", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.2.12", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "lilconfig": "^2.0.6", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.18", - "postcss-import": "^14.1.0", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "6.0.0", - "postcss-selector-parser": "^6.0.10", - "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.1" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=12.13.0" - }, - "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/tailwindcss/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true, - "license": "MIT" - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "license": "MIT" - }, - "node_modules/through2": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", - "integrity": "sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ==", - "license": "MIT", - "dependencies": { - "readable-stream": "~1.0.17", - "xtend": "~2.1.1" - } - }, - "node_modules/through2/node_modules/object-keys": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", - "integrity": "sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==", - "license": "MIT" - }, - "node_modules/through2/node_modules/xtend": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", - "integrity": "sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==", - "dependencies": { - "object-keys": "~0.4.0" - }, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/tiny-glob": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", - "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", - "dev": true, - "license": "MIT", - "dependencies": { - "globalyzer": "0.1.0", - "globrex": "^0.1.2" - } - }, - "node_modules/tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" - }, - "node_modules/tough-cookie": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", - "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", - "license": "BSD-3-Clause", - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "license": "MIT", - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", - "license": "0BSD" - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true, - "license": "0BSD" - }, - "node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "license": "MIT", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "license": "MIT", - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "browserslist-lint": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "license": "MIT", - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "node_modules/use-callback-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.0.tgz", - "integrity": "sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-composed-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", - "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-latest": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", - "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", - "license": "MIT", - "dependencies": { - "use-isomorphic-layout-effect": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-memo-one": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz", - "integrity": "sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/use-sidecar": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", - "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", - "license": "MIT", - "dependencies": { - "detect-node-es": "^1.1.0", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "license": "MIT" - }, - "node_modules/w3c-xmlserializer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", - "license": "MIT", - "dependencies": { - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", - "license": "MIT", - "dependencies": { - "iconv-lite": "0.6.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "license": "MIT", - "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/ws": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.1.tgz", - "integrity": "sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "license": "Apache-2.0", - "engines": { - "node": ">=12" - } - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "license": "MIT" - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "license": "ISC", - "engines": { - "node": ">= 6" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==" - }, - "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", - "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", - "requires": { - "regenerator-runtime": "^0.13.11" - } - }, - "@babel/types": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz", - "integrity": "sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==", - "requires": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - } - }, - "@chakra-ui/accordion": { - "version": "2.1.11", - "resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.1.11.tgz", - "integrity": "sha512-mfVPmqETp9pyRDHJ33AdF19oHv/LyxVzQJtlxUByuvs8Cj9QQZ2LQLg5kejm+b3mj03A7A6yfbuo3RNaI4Bhsg==", - "requires": { - "@chakra-ui/descendant": "3.0.14", - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.0.16" - } - }, - "@chakra-ui/alert": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.1.0.tgz", - "integrity": "sha512-OcfHwoXI5VrmM+tHJTHT62Bx6TfyfCxSa0PWUOueJzSyhlUOKBND5we6UtrOB7D0jwX45qKKEDJOLG5yCG21jQ==", - "requires": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/spinner": "2.0.13" - } - }, - "@chakra-ui/anatomy": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.1.2.tgz", - "integrity": "sha512-pKfOS/mztc4sUXHNc8ypJ1gPWSolWT770jrgVRfolVbYlki8y5Y+As996zMF6k5lewTu6j9DQequ7Cc9a69IVQ==" - }, - "@chakra-ui/avatar": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.2.10.tgz", - "integrity": "sha512-Scc0qJtJcxoGOaSS4TkoC2PhVLMacrBcfaNfLqV6wES56BcsjegHvpxREFunZkgVNph/XRHW6J1xOclnsZiPBQ==", - "requires": { - "@chakra-ui/image": "2.0.16", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/breadcrumb": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.1.5.tgz", - "integrity": "sha512-p3eQQrHQBkRB69xOmNyBJqEdfCrMt+e0eOH+Pm/DjFWfIVIbnIaFbmDCeWClqlLa21Ypc6h1hR9jEmvg8kmOog==", - "requires": { - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/breakpoint-utils": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.8.tgz", - "integrity": "sha512-Pq32MlEX9fwb5j5xx8s18zJMARNHlQZH2VH1RZgfgRDpp7DcEgtRW5AInfN5CfqdHLO1dGxA7I3MqEuL5JnIsA==", - "requires": { - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/button": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.18.tgz", - "integrity": "sha512-E3c99+lOm6ou4nQVOTLkG+IdOPMjsQK+Qe7VyP8A/xeAMFONuibrWPRPpprr4ZkB4kEoLMfNuyH2+aEza3ScUA==", - "requires": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/spinner": "2.0.13" - } - }, - "@chakra-ui/card": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/card/-/card-2.1.6.tgz", - "integrity": "sha512-fFd/WAdRNVY/WOSQv4skpy0WeVhhI0f7dTY1Sm0jVl0KLmuP/GnpsWtKtqWjNcV00K963EXDyhlk6+9oxbP4gw==", - "requires": { - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/checkbox": { - "version": "2.2.15", - "resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.2.15.tgz", - "integrity": "sha512-Ju2yQjX8azgFa5f6VLPuwdGYobZ+rdbcYqjiks848JvPc75UsPhpS05cb4XlrKT7M16I8txDA5rPJdqqFicHCA==", - "requires": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/visually-hidden": "2.0.15", - "@zag-js/focus-visible": "0.2.2" - } - }, - "@chakra-ui/clickable": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.14.tgz", - "integrity": "sha512-jfsM1qaD74ZykLHmvmsKRhDyokLUxEfL8Il1VoZMNX5RBI0xW/56vKpLTFF/v/+vLPLS+Te2cZdD4+2O+G6ulA==", - "requires": { - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/close-button": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.17.tgz", - "integrity": "sha512-05YPXk456t1Xa3KpqTrvm+7smx+95dmaPiwjiBN3p7LHUQVHJd8ZXSDB0V+WKi419k3cVQeJUdU/azDO2f40sw==", - "requires": { - "@chakra-ui/icon": "3.0.16" - } - }, - "@chakra-ui/color-mode": { - "version": "2.1.12", - "resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.12.tgz", - "integrity": "sha512-sYyfJGDoJSLYO+V2hxV9r033qhte5Nw/wAn5yRGGZnEEN1dKPEdWQ3XZvglWSDTNd0w9zkoH2w6vP4FBBYb/iw==", - "requires": { - "@chakra-ui/react-use-safe-layout-effect": "2.0.5" - } - }, - "@chakra-ui/control-box": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.13.tgz", - "integrity": "sha512-FEyrU4crxati80KUF/+1Z1CU3eZK6Sa0Yv7Z/ydtz9/tvGblXW9NFanoomXAOvcIFLbaLQPPATm9Gmpr7VG05A==" - }, - "@chakra-ui/counter": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.14.tgz", - "integrity": "sha512-KxcSRfUbb94dP77xTip2myoE7P2HQQN4V5fRJmNAGbzcyLciJ+aDylUU/UxgNcEjawUp6Q242NbWb1TSbKoqog==", - "requires": { - "@chakra-ui/number-utils": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/css-reset": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.1.1.tgz", - "integrity": "sha512-jwEOfIAWmQsnChHQTW/eRE+dfE4MjmhvSvoUug5nkV1pI7veC/20noFlIZxzi82EbiQI8Fs0+Jnusgxr2yaOHA==" - }, - "@chakra-ui/descendant": { - "version": "3.0.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.14.tgz", - "integrity": "sha512-+Ahvp9H4HMpfScIv9w1vaecGz7qWAaK1YFHHolz/SIsGLaLGlbdp+5UNabQC7L6TUnzzJDQDxzwif78rTD7ang==", - "requires": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7" - } - }, - "@chakra-ui/dom-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.6.tgz", - "integrity": "sha512-PVtDkPrDD5b8aoL6Atg7SLjkwhWb7BwMcLOF1L449L3nZN+DAO3nyAh6iUhZVJyunELj9d0r65CDlnMREyJZmA==" - }, - "@chakra-ui/editable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-3.0.0.tgz", - "integrity": "sha512-q/7C/TM3iLaoQKlEiM8AY565i9NoaXtS6N6N4HWIEL5mZJPbMeHKxrCHUZlHxYuQJqFOGc09ZPD9fAFx1GkYwQ==", - "requires": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-focus-on-pointer-down": "2.0.6", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/event-utils": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.8.tgz", - "integrity": "sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw==" - }, - "@chakra-ui/focus-lock": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.16.tgz", - "integrity": "sha512-UuAdGCPVrCa1lecoAvpOQD7JFT7a9RdmhKWhFt5ioIcekSLJcerdLHuuL3w0qz//8kd1/SOt7oP0aJqdAJQrCw==", - "requires": { - "@chakra-ui/dom-utils": "2.0.6", - "react-focus-lock": "^2.9.2" - } - }, - "@chakra-ui/form-control": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.18.tgz", - "integrity": "sha512-I0a0jG01IAtRPccOXSNugyRdUAe8Dy40ctqedZvznMweOXzbMCF1m+sHPLdWeWC/VI13VoAispdPY0/zHOdjsQ==", - "requires": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/hooks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.2.0.tgz", - "integrity": "sha512-GZE64mcr20w+3KbCUPqQJHHmiFnX5Rcp8jS3YntGA4D5X2qU85jka7QkjfBwv/iduZ5Ei0YpCMYGCpi91dhD1Q==", - "requires": { - "@chakra-ui/react-utils": "2.0.12", - "@chakra-ui/utils": "2.0.15", - "compute-scroll-into-view": "1.0.20", - "copy-to-clipboard": "3.3.3" - } - }, - "@chakra-ui/icon": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.16.tgz", - "integrity": "sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg==", - "requires": { - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/image": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.16.tgz", - "integrity": "sha512-iFypk1slgP3OK7VIPOtkB0UuiqVxNalgA59yoRM43xLIeZAEZpKngUVno4A2kFS61yKN0eIY4hXD3Xjm+25EJA==", - "requires": { - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/input": { - "version": "2.0.22", - "resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.22.tgz", - "integrity": "sha512-dCIC0/Q7mjZf17YqgoQsnXn0bus6vgriTRn8VmxOc+WcVl+KBSTBWujGrS5yu85WIFQ0aeqQvziDnDQybPqAbA==", - "requires": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/layout": { - "version": "2.1.19", - "resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.19.tgz", - "integrity": "sha512-g7xMVKbQFCODwKCkEF4/OmdPsr/fAavWUV+DGc1ZWVPdroUlg1FGTpK9bOTwkC/gnko7cMClILA+BIPR3Ylu9Q==", - "requires": { - "@chakra-ui/breakpoint-utils": "2.0.8", - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/lazy-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.5.tgz", - "integrity": "sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg==" - }, - "@chakra-ui/live-region": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.13.tgz", - "integrity": "sha512-Ja+Slk6ZkxSA5oJzU2VuGU7TpZpbMb/4P4OUhIf2D30ctmIeXkxTWw1Bs1nGJAVtAPcGS5sKA+zb89i8g+0cTQ==" - }, - "@chakra-ui/media-query": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.12.tgz", - "integrity": "sha512-8pSLDf3oxxhFrhd40rs7vSeIBfvOmIKHA7DJlGUC/y+9irD24ZwgmCtFnn+y3gI47hTJsopbSX+wb8nr7XPswA==", - "requires": { - "@chakra-ui/breakpoint-utils": "2.0.8", - "@chakra-ui/react-env": "3.0.0", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/menu": { - "version": "2.1.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.1.14.tgz", - "integrity": "sha512-z4YzlY/ub1hr4Ee2zCnZDs4t43048yLTf5GhEVYDO+SI92WlOfHlP9gYEzR+uj/CiRZglVFwUDKb3UmFtmKPyg==", - "requires": { - "@chakra-ui/clickable": "2.0.14", - "@chakra-ui/descendant": "3.0.14", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/popper": "3.0.14", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-animation-state": "2.0.8", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-disclosure": "2.0.8", - "@chakra-ui/react-use-focus-effect": "2.0.10", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-outside-click": "2.1.0", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.0.16" - } - }, - "@chakra-ui/modal": { - "version": "2.2.11", - "resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.2.11.tgz", - "integrity": "sha512-2J0ZUV5tEzkPiawdkgPz6bmex7NXAde1VXooMwdvK+vuT8PV3U61yorTJOZVLdw7TjjI1Yo94mzsp6UwBud43Q==", - "requires": { - "@chakra-ui/close-button": "2.0.17", - "@chakra-ui/focus-lock": "2.0.16", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.0.16", - "aria-hidden": "^1.2.2", - "react-remove-scroll": "^2.5.5" - } - }, - "@chakra-ui/number-input": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.19.tgz", - "integrity": "sha512-HDaITvtMEqOauOrCPsARDxKD9PSHmhWywpcyCSOX0lMe4xx2aaGhU0QQFhsJsykj8Er6pytMv6t0KZksdDv3YA==", - "requires": { - "@chakra-ui/counter": "2.0.14", - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/react-use-event-listener": "2.0.7", - "@chakra-ui/react-use-interval": "2.0.5", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/number-utils": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.7.tgz", - "integrity": "sha512-yOGxBjXNvLTBvQyhMDqGU0Oj26s91mbAlqKHiuw737AXHt0aPllOthVUqQMeaYLwLCjGMg0jtI7JReRzyi94Dg==" - }, - "@chakra-ui/object-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.1.0.tgz", - "integrity": "sha512-tgIZOgLHaoti5PYGPTwK3t/cqtcycW0owaiOXoZOcpwwX/vlVb+H1jFsQyWiiwQVPt9RkoSLtxzXamx+aHH+bQ==" - }, - "@chakra-ui/pin-input": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.20.tgz", - "integrity": "sha512-IHVmerrtHN8F+jRB3W1HnMir1S1TUCWhI7qDInxqPtoRffHt6mzZgLZ0izx8p1fD4HkW4c1d4/ZLEz9uH9bBRg==", - "requires": { - "@chakra-ui/descendant": "3.0.14", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/popover": { - "version": "2.1.11", - "resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.1.11.tgz", - "integrity": "sha512-ntFMKojU+ZIofwSw5IJ+Ur8pN5o+5kf/Fx5r5tCjFZd0DSkrEeJw9i00/UWJ6kYZb+zlpswxriv0FmxBlAF66w==", - "requires": { - "@chakra-ui/close-button": "2.0.17", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/popper": "3.0.14", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-animation-state": "2.0.8", - "@chakra-ui/react-use-disclosure": "2.0.8", - "@chakra-ui/react-use-focus-effect": "2.0.10", - "@chakra-ui/react-use-focus-on-pointer-down": "2.0.6", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/popper": { - "version": "3.0.14", - "resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.14.tgz", - "integrity": "sha512-RDMmmSfjsmHJbVn2agDyoJpTbQK33fxx//njwJdeyM0zTG/3/4xjI/Cxru3acJ2Y+1jFGmPqhO81stFjnbtfIw==", - "requires": { - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@popperjs/core": "^2.9.3" - } - }, - "@chakra-ui/portal": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.16.tgz", - "integrity": "sha512-bVID0qbQ0l4xq38LdqAN4EKD4/uFkDnXzFwOlviC9sl0dNhzICDb1ltuH/Adl1d2HTMqyN60O3GO58eHy7plnQ==", - "requires": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5" - } - }, - "@chakra-ui/progress": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.1.6.tgz", - "integrity": "sha512-hHh5Ysv4z6bK+j2GJbi/FT9CVyto2PtNUNwBmr3oNMVsoOUMoRjczfXvvYqp0EHr9PCpxqrq7sRwgQXUzhbDSw==", - "requires": { - "@chakra-ui/react-context": "2.0.8" - } - }, - "@chakra-ui/provider": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.2.4.tgz", - "integrity": "sha512-vz/WMEWhwoITCAkennRNYCeQHsJ6YwB/UjVaAK+61jWY42J7uCsRZ+3nB5rDjQ4m+aqPfTUPof8KLJBrtYrJbw==", - "requires": { - "@chakra-ui/css-reset": "2.1.1", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/react-env": "3.0.0", - "@chakra-ui/system": "2.5.7", - "@chakra-ui/utils": "2.0.15" - } - }, - "@chakra-ui/radio": { - "version": "2.0.22", - "resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.22.tgz", - "integrity": "sha512-GsQ5WAnLwivWl6gPk8P1x+tCcpVakCt5R5T0HumF7DGPXKdJbjS+RaFySrbETmyTJsKY4QrfXn+g8CWVrMjPjw==", - "requires": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@zag-js/focus-visible": "0.2.2" - } - }, - "@chakra-ui/react": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-2.6.1.tgz", - "integrity": "sha512-Lt8c8pLPTz59xxdSuL2FlE7le9MXx4zgjr60UnEc3yjAMjXNTqUAoWHyT4Zn1elCGUPWOedS3rMvp4KTshT+5w==", - "requires": { - "@chakra-ui/accordion": "2.1.11", - "@chakra-ui/alert": "2.1.0", - "@chakra-ui/avatar": "2.2.10", - "@chakra-ui/breadcrumb": "2.1.5", - "@chakra-ui/button": "2.0.18", - "@chakra-ui/card": "2.1.6", - "@chakra-ui/checkbox": "2.2.15", - "@chakra-ui/close-button": "2.0.17", - "@chakra-ui/control-box": "2.0.13", - "@chakra-ui/counter": "2.0.14", - "@chakra-ui/css-reset": "2.1.1", - "@chakra-ui/editable": "3.0.0", - "@chakra-ui/focus-lock": "2.0.16", - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/hooks": "2.2.0", - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/image": "2.0.16", - "@chakra-ui/input": "2.0.22", - "@chakra-ui/layout": "2.1.19", - "@chakra-ui/live-region": "2.0.13", - "@chakra-ui/media-query": "3.2.12", - "@chakra-ui/menu": "2.1.14", - "@chakra-ui/modal": "2.2.11", - "@chakra-ui/number-input": "2.0.19", - "@chakra-ui/pin-input": "2.0.20", - "@chakra-ui/popover": "2.1.11", - "@chakra-ui/popper": "3.0.14", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/progress": "2.1.6", - "@chakra-ui/provider": "2.2.4", - "@chakra-ui/radio": "2.0.22", - "@chakra-ui/react-env": "3.0.0", - "@chakra-ui/select": "2.0.19", - "@chakra-ui/skeleton": "2.0.24", - "@chakra-ui/slider": "2.0.24", - "@chakra-ui/spinner": "2.0.13", - "@chakra-ui/stat": "2.0.18", - "@chakra-ui/stepper": "2.2.0", - "@chakra-ui/styled-system": "2.9.0", - "@chakra-ui/switch": "2.0.27", - "@chakra-ui/system": "2.5.7", - "@chakra-ui/table": "2.0.17", - "@chakra-ui/tabs": "2.1.9", - "@chakra-ui/tag": "3.0.0", - "@chakra-ui/textarea": "2.0.19", - "@chakra-ui/theme": "3.1.1", - "@chakra-ui/theme-utils": "2.0.17", - "@chakra-ui/toast": "6.1.3", - "@chakra-ui/tooltip": "2.2.8", - "@chakra-ui/transition": "2.0.16", - "@chakra-ui/utils": "2.0.15", - "@chakra-ui/visually-hidden": "2.0.15" - } - }, - "@chakra-ui/react-children-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.6.tgz", - "integrity": "sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA==" - }, - "@chakra-ui/react-context": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.8.tgz", - "integrity": "sha512-tRTKdn6lCTXM6WPjSokAAKCw2ioih7Eg8cNgaYRSwKBck8nkz9YqxgIIEj3dJD7MGtpl24S/SNI98iRWkRwR/A==" - }, - "@chakra-ui/react-env": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-3.0.0.tgz", - "integrity": "sha512-tfMRO2v508HQWAqSADFrwZgR9oU10qC97oV6zGbjHh9ALP0/IcFR+Bi71KRTveDTm85fMeAzZYGj57P3Dsipkw==", - "requires": { - "@chakra-ui/react-use-safe-layout-effect": "2.0.5" - } - }, - "@chakra-ui/react-types": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-types/-/react-types-2.0.7.tgz", - "integrity": "sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ==" - }, - "@chakra-ui/react-use-animation-state": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.8.tgz", - "integrity": "sha512-xv9zSF2Rd1mHWQ+m5DLBWeh4atF8qrNvsOs3MNrvxKYBS3f79N3pqcQGrWAEvirXWXfiCeje2VAkEggqFRIo+Q==", - "requires": { - "@chakra-ui/dom-utils": "2.0.6", - "@chakra-ui/react-use-event-listener": "2.0.7" - } - }, - "@chakra-ui/react-use-callback-ref": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.7.tgz", - "integrity": "sha512-YjT76nTpfHAK5NxplAlZsQwNju5KmQExnqsWNPFeOR6vvbC34+iPSTr+r91i1Hdy7gBSbevsOsd5Wm6RN3GuMw==" - }, - "@chakra-ui/react-use-controllable-state": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.8.tgz", - "integrity": "sha512-F7rdCbLEmRjwwODqWZ3y+mKgSSHPcLQxeUygwk1BkZPXbKkJJKymOIjIynil2cbH7ku3hcSIWRvuhpCcfQWJ7Q==", - "requires": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - } - }, - "@chakra-ui/react-use-disclosure": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.8.tgz", - "integrity": "sha512-2ir/mHe1YND40e+FyLHnDsnDsBQPwzKDLzfe9GZri7y31oU83JSbHdlAXAhp3bpjohslwavtRCp+S/zRxfO9aQ==", - "requires": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - } - }, - "@chakra-ui/react-use-event-listener": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.7.tgz", - "integrity": "sha512-4wvpx4yudIO3B31pOrXuTHDErawmwiXnvAN7gLEOVREi16+YGNcFnRJ5X5nRrmB7j2MDUtsEDpRBFfw5Z9xQ5g==", - "requires": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - } - }, - "@chakra-ui/react-use-focus-effect": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.10.tgz", - "integrity": "sha512-HswfpzjP8gCQM3/fbeR+8wrYqt0B3ChnVTqssnYXqp9Fa/5Y1Kx1ZADUWW93zMs5SF7hIEuNt8uKeh1/3HTcqQ==", - "requires": { - "@chakra-ui/dom-utils": "2.0.6", - "@chakra-ui/react-use-event-listener": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7" - } - }, - "@chakra-ui/react-use-focus-on-pointer-down": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.6.tgz", - "integrity": "sha512-OigXiLRVySn3tyVqJ/rn57WGuukW8TQe8fJYiLwXbcNyAMuYYounvRxvCy2b53sQ7QIZamza0N0jhirbH5FNoQ==", - "requires": { - "@chakra-ui/react-use-event-listener": "2.0.7" - } - }, - "@chakra-ui/react-use-interval": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.5.tgz", - "integrity": "sha512-1nbdwMi2K87V6p5f5AseOKif2CkldLaJlq1TOqaPRwb7v3aU9rltBtYdf+fIyuHSToNJUV6wd9budCFdLCl3Fg==", - "requires": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - } - }, - "@chakra-ui/react-use-latest-ref": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.0.5.tgz", - "integrity": "sha512-3mIuFzMyIo3Ok/D8uhV9voVg7KkrYVO/pwVvNPJOHsDQqCA6DpYE4WDsrIx+fVcwad3Ta7SupexR5PoI+kq6QQ==" - }, - "@chakra-ui/react-use-merge-refs": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.7.tgz", - "integrity": "sha512-zds4Uhsc+AMzdH8JDDkLVet9baUBgtOjPbhC5r3A0ZXjZvGhCztFAVE3aExYiVoMPoHLKbLcqvCWE6ioFKz1lw==" - }, - "@chakra-ui/react-use-outside-click": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.1.0.tgz", - "integrity": "sha512-JanCo4QtWvMl9ZZUpKJKV62RlMWDFdPCE0Q64a7eWTOQgWWcpyBW7TOYRunQTqrK30FqkYFJCOlAWOtn+6Rw7A==", - "requires": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - } - }, - "@chakra-ui/react-use-pan-event": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.9.tgz", - "integrity": "sha512-xu35QXkiyrgsHUOnctl+SwNcwf9Rl62uYE5y8soKOZdBm8E+FvZIt2hxUzK1EoekbJCMzEZ0Yv1ZQCssVkSLaQ==", - "requires": { - "@chakra-ui/event-utils": "2.0.8", - "@chakra-ui/react-use-latest-ref": "2.0.5", - "framesync": "6.1.2" - } - }, - "@chakra-ui/react-use-previous": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.5.tgz", - "integrity": "sha512-BIZgjycPE4Xr+MkhKe0h67uHXzQQkBX/u5rYPd65iMGdX1bCkbE0oorZNfOHLKdTmnEb4oVsNvfN6Rfr+Mnbxw==" - }, - "@chakra-ui/react-use-safe-layout-effect": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.5.tgz", - "integrity": "sha512-MwAQBz3VxoeFLaesaSEN87reVNVbjcQBDex2WGexAg6hUB6n4gc1OWYH/iXp4tzp4kuggBNhEHkk9BMYXWfhJQ==" - }, - "@chakra-ui/react-use-size": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.10.tgz", - "integrity": "sha512-fdIkH14GDnKQrtQfxX8N3gxbXRPXEl67Y3zeD9z4bKKcQUAYIMqs0MsPZY+FMpGQw8QqafM44nXfL038aIrC5w==", - "requires": { - "@zag-js/element-size": "0.3.2" - } - }, - "@chakra-ui/react-use-timeout": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.5.tgz", - "integrity": "sha512-QqmB+jVphh3h/CS60PieorpY7UqSPkrQCB7f7F+i9vwwIjtP8fxVHMmkb64K7VlzQiMPzv12nlID5dqkzlv0mw==", - "requires": { - "@chakra-ui/react-use-callback-ref": "2.0.7" - } - }, - "@chakra-ui/react-use-update-effect": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.7.tgz", - "integrity": "sha512-vBM2bmmM83ZdDtasWv3PXPznpTUd+FvqBC8J8rxoRmvdMEfrxTiQRBJhiGHLpS9BPLLPQlosN6KdFU97csB6zg==" - }, - "@chakra-ui/react-utils": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.12.tgz", - "integrity": "sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw==", - "requires": { - "@chakra-ui/utils": "2.0.15" - } - }, - "@chakra-ui/select": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.19.tgz", - "integrity": "sha512-eAlFh+JhwtJ17OrB6fO6gEAGOMH18ERNrXLqWbYLrs674Le7xuREgtuAYDoxUzvYXYYTTdOJtVbcHGriI3o6rA==", - "requires": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/shared-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz", - "integrity": "sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q==" - }, - "@chakra-ui/skeleton": { - "version": "2.0.24", - "resolved": "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.24.tgz", - "integrity": "sha512-1jXtVKcl/jpbrJlc/TyMsFyI651GTXY5ma30kWyTXoby2E+cxbV6OR8GB/NMZdGxbQBax8/VdtYVjI0n+OBqWA==", - "requires": { - "@chakra-ui/media-query": "3.2.12", - "@chakra-ui/react-use-previous": "2.0.5", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/slider": { - "version": "2.0.24", - "resolved": "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.24.tgz", - "integrity": "sha512-o3hOaIiTzPMG8yf+HYWbrTmhxABicDViVOvOajRSXDodbZSCk1rZy1nmUeahjVtfVUB1IyJoNcXdn76IqJmhdg==", - "requires": { - "@chakra-ui/number-utils": "2.0.7", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.0.7", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-latest-ref": "2.0.5", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-pan-event": "2.0.9", - "@chakra-ui/react-use-size": "2.0.10", - "@chakra-ui/react-use-update-effect": "2.0.7" - } - }, - "@chakra-ui/spinner": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.13.tgz", - "integrity": "sha512-T1/aSkVpUIuiYyrjfn1+LsQEG7Onbi1UE9ccS/evgf61Dzy4GgTXQUnDuWFSgpV58owqirqOu6jn/9eCwDlzlg==", - "requires": { - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/stat": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.18.tgz", - "integrity": "sha512-wKyfBqhVlIs9bkSerUc6F9KJMw0yTIEKArW7dejWwzToCLPr47u+CtYO6jlJHV6lRvkhi4K4Qc6pyvtJxZ3VpA==", - "requires": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/stepper": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/stepper/-/stepper-2.2.0.tgz", - "integrity": "sha512-8ZLxV39oghSVtOUGK8dX8Z6sWVSQiKVmsK4c3OQDa8y2TvxP0VtFD0Z5U1xJlOjQMryZRWhGj9JBc3iQLukuGg==", - "requires": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/styled-system": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.9.0.tgz", - "integrity": "sha512-rToN30eOezrTZ5qBHmWqEwsYPenHtc3WU6ODAfMUwNnmCJQiu2erRGv8JwIjmRJnKSOEnNKccI2UXe2EwI6+JA==", - "requires": { - "@chakra-ui/shared-utils": "2.0.5", - "csstype": "^3.0.11", - "lodash.mergewith": "4.6.2" - } - }, - "@chakra-ui/switch": { - "version": "2.0.27", - "resolved": "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.27.tgz", - "integrity": "sha512-z76y2fxwMlvRBrC5W8xsZvo3gP+zAEbT3Nqy5P8uh/IPd5OvDsGeac90t5cgnQTyxMOpznUNNK+1eUZqtLxWnQ==", - "requires": { - "@chakra-ui/checkbox": "2.2.15", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/system": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/system/-/system-2.5.7.tgz", - "integrity": "sha512-yB6en7YdJPxKvKY2jJROVwkBE2CLFmHS4ZDx27VdYs0Fa4kGiyDFhJAfnMtLBNDVsTy1NhUHL9aqR63u56QqFg==", - "requires": { - "@chakra-ui/color-mode": "2.1.12", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-utils": "2.0.12", - "@chakra-ui/styled-system": "2.9.0", - "@chakra-ui/theme-utils": "2.0.17", - "@chakra-ui/utils": "2.0.15", - "react-fast-compare": "3.2.1" - } - }, - "@chakra-ui/table": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.17.tgz", - "integrity": "sha512-OScheTEp1LOYvTki2NFwnAYvac8siAhW9BI5RKm5f5ORL2gVJo4I72RUqE0aKe1oboxgm7CYt5afT5PS5cG61A==", - "requires": { - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/tabs": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.9.tgz", - "integrity": "sha512-Yf8e0kRvaGM6jfkJum0aInQ0U3ZlCafmrYYni2lqjcTtThqu+Yosmo3iYlnullXxCw5MVznfrkb9ySvgQowuYg==", - "requires": { - "@chakra-ui/clickable": "2.0.14", - "@chakra-ui/descendant": "3.0.14", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-controllable-state": "2.0.8", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/react-use-safe-layout-effect": "2.0.5", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/tag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/tag/-/tag-3.0.0.tgz", - "integrity": "sha512-YWdMmw/1OWRwNkG9pX+wVtZio+B89odaPj6XeMn5nfNN8+jyhIEpouWv34+CO9G0m1lupJTxPSfgLAd7cqXZMA==", - "requires": { - "@chakra-ui/icon": "3.0.16", - "@chakra-ui/react-context": "2.0.8" - } - }, - "@chakra-ui/textarea": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.19.tgz", - "integrity": "sha512-adJk+qVGsFeJDvfn56CcJKKse8k7oMGlODrmpnpTdF+xvlsiTM+1GfaJvgNSpHHuQFdz/A0z1uJtfGefk0G2ZA==", - "requires": { - "@chakra-ui/form-control": "2.0.18", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/theme": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme/-/theme-3.1.1.tgz", - "integrity": "sha512-VHcG0CPLd9tgvWnajpAGqrAYhx4HwgfK0E9VOrdwa/3bN+AgY/0EAAXzfe0Q0W2MBWzSgaYqZcQ5cDRpYbiYPA==", - "requires": { - "@chakra-ui/anatomy": "2.1.2", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/theme-tools": "2.0.17" - } - }, - "@chakra-ui/theme-tools": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.17.tgz", - "integrity": "sha512-Auu38hnihlJZQcPok6itRDBbwof3TpXGYtDPnOvrq4Xp7jnab36HLt7KEXSDPXbtOk3ZqU99pvI1en5LbDrdjg==", - "requires": { - "@chakra-ui/anatomy": "2.1.2", - "@chakra-ui/shared-utils": "2.0.5", - "color2k": "^2.0.0" - } - }, - "@chakra-ui/theme-utils": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.17.tgz", - "integrity": "sha512-aUaVLFIU1Rs8m+5WVOUvqHKapOX8nSgUVGaeRWS4odxBM95dG4j15f4L88LEMw4D4+WWd0CSAS139OnRgj1rCw==", - "requires": { - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/styled-system": "2.9.0", - "@chakra-ui/theme": "3.1.1", - "lodash.mergewith": "4.6.2" - } - }, - "@chakra-ui/toast": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/@chakra-ui/toast/-/toast-6.1.3.tgz", - "integrity": "sha512-dsg/Sdkuq+SCwdOeyzrnBO1ecDA7VKfLFjUtj9QBc/SFEN8r+FQrygy79TNo+QWr7zdjI8icbl8nsp59lpb8ag==", - "requires": { - "@chakra-ui/alert": "2.1.0", - "@chakra-ui/close-button": "2.0.17", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/react-context": "2.0.8", - "@chakra-ui/react-use-timeout": "2.0.5", - "@chakra-ui/react-use-update-effect": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/styled-system": "2.9.0", - "@chakra-ui/theme": "3.1.1" - } - }, - "@chakra-ui/tooltip": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.2.8.tgz", - "integrity": "sha512-AqtrCkalADrqqd1SgII4n8F0dDABxqxL3e8uj3yC3HDzT3BU/0NSwSQRA2bp9eoJHk07ZMs9kyzvkkBLc0pr2A==", - "requires": { - "@chakra-ui/popper": "3.0.14", - "@chakra-ui/portal": "2.0.16", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-disclosure": "2.0.8", - "@chakra-ui/react-use-event-listener": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.0.7", - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/transition": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.16.tgz", - "integrity": "sha512-E+RkwlPc3H7P1crEXmXwDXMB2lqY2LLia2P5siQ4IEnRWIgZXlIw+8Em+NtHNgusel2N+9yuB0wT9SeZZeZ3CQ==", - "requires": { - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "@chakra-ui/utils": { - "version": "2.0.15", - "resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.15.tgz", - "integrity": "sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA==", - "requires": { - "@types/lodash.mergewith": "4.6.7", - "css-box-model": "1.2.1", - "framesync": "6.1.2", - "lodash.mergewith": "4.6.2" - } - }, - "@chakra-ui/visually-hidden": { - "version": "2.0.15", - "resolved": "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.15.tgz", - "integrity": "sha512-WWULIiucYRBIewHKFA7BssQ2ABLHLVd9lrUo3N3SZgR0u4ZRDDVEUNOy+r+9ruDze8+36dGbN9wsN1IdELtdOw==" - }, - "@dnd-kit/accessibility": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.0.1.tgz", - "integrity": "sha512-HXRrwS9YUYQO9lFRc/49uO/VICbM+O+ZRpFDe9Pd1rwVv2PCNkRiTZRdxrDgng/UkvdC3Re9r2vwPpXXrWeFzg==", - "requires": { - "tslib": "^2.0.0" - } - }, - "@dnd-kit/core": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/@dnd-kit/core/-/core-6.0.8.tgz", - "integrity": "sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA==", - "requires": { - "@dnd-kit/accessibility": "^3.0.0", - "@dnd-kit/utilities": "^3.2.1", - "tslib": "^2.0.0" - } - }, - "@dnd-kit/sortable": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-7.0.2.tgz", - "integrity": "sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA==", - "requires": { - "@dnd-kit/utilities": "^3.2.0", - "tslib": "^2.0.0" - } - }, - "@dnd-kit/utilities": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.1.tgz", - "integrity": "sha512-OOXqISfvBw/1REtkSK2N3Fi2EQiLMlWUlqnOK/UpOISqBZPWpE6TqL+jcPtMOkE8TqYGiURvRdPSI9hltNUjEA==", - "requires": { - "tslib": "^2.0.0" - } - }, - "@emotion/babel-plugin": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", - "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", - "requires": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/serialize": "^1.1.2", - "babel-plugin-macros": "^3.1.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.2.0" - }, - "dependencies": { - "stylis": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" - } - } - }, - "@emotion/cache": { - "version": "11.10.5", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz", - "integrity": "sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==", - "requires": { - "@emotion/memoize": "^0.8.0", - "@emotion/sheet": "^1.2.1", - "@emotion/utils": "^1.2.0", - "@emotion/weak-memoize": "^0.3.0", - "stylis": "4.1.3" - } - }, - "@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" - }, - "@emotion/is-prop-valid": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", - "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", - "requires": { - "@emotion/memoize": "^0.8.1" - } - }, - "@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" - }, - "@emotion/react": { - "version": "11.10.6", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.10.6.tgz", - "integrity": "sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==", - "requires": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.10.6", - "@emotion/cache": "^11.10.5", - "@emotion/serialize": "^1.1.1", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@emotion/utils": "^1.2.0", - "@emotion/weak-memoize": "^0.3.0", - "hoist-non-react-statics": "^3.3.1" - } - }, - "@emotion/serialize": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz", - "integrity": "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==", - "requires": { - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/unitless": "^0.8.1", - "@emotion/utils": "^1.2.1", - "csstype": "^3.0.2" - } - }, - "@emotion/server": { - "version": "11.10.0", - "resolved": "https://registry.npmjs.org/@emotion/server/-/server-11.10.0.tgz", - "integrity": "sha512-MTvJ21JPo9aS02GdjFW4nhdwOi2tNNpMmAM/YED0pkxzjDNi5WbiTwXqaCnvLc2Lr8NFtjhT0az1vTJyLIHYcw==", - "requires": { - "@emotion/utils": "^1.2.0", - "html-tokenize": "^2.0.0", - "multipipe": "^1.0.2", - "through": "^2.3.8" - } - }, - "@emotion/sheet": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz", - "integrity": "sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==" - }, - "@emotion/styled": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz", - "integrity": "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==", - "requires": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.11.0", - "@emotion/is-prop-valid": "^1.2.1", - "@emotion/serialize": "^1.1.2", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@emotion/utils": "^1.2.1" - } - }, - "@emotion/unitless": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" - }, - "@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", - "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==" - }, - "@emotion/utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", - "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" - }, - "@emotion/weak-memoize": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz", - "integrity": "sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==" - }, - "@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - } - }, - "@floating-ui/core": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.2.2.tgz", - "integrity": "sha512-FaO9KVLFnxknZaGWGmNtjD2CVFuc0u4yeGEofoyXO2wgRA7fLtkngT6UB0vtWQWuhH3iMTZZ/Y89CMeyGfn8pA==" - }, - "@floating-ui/dom": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.2.3.tgz", - "integrity": "sha512-lK9cZUrHSJLMVAdCvDqs6Ug8gr0wmqksYiaoj/bxj2gweRQkSuhg2/V6Jswz2KiQ0RAULbqw1oQDJIMpQ5GfGA==", - "requires": { - "@floating-ui/core": "^1.2.2" - } - }, - "@floating-ui/react": { - "version": "0.19.2", - "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.19.2.tgz", - "integrity": "sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w==", - "requires": { - "@floating-ui/react-dom": "^1.3.0", - "aria-hidden": "^1.1.3", - "tabbable": "^6.0.1" - } - }, - "@floating-ui/react-dom": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-1.3.0.tgz", - "integrity": "sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==", - "requires": { - "@floating-ui/dom": "^1.2.1" - } - }, - "@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@mantine/carousel": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/carousel/-/carousel-6.0.0.tgz", - "integrity": "sha512-rRK6ikSonMUk9i5mCqbhlTAG6r7obU7xnIaV0a1bBvwYMsgxRUVlDTO6od7cULXl5REa8xbSQkXsqjbP3fMgeg==", - "requires": { - "@mantine/utils": "6.0.0" - } - }, - "@mantine/core": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/core/-/core-6.0.0.tgz", - "integrity": "sha512-ik2NUAAn9fYcqmOAluGtI9R73ijrr450dZDA+MezKq/dvpUU/Fhl9yXnGoCxxZ5XF6y4i6q07318rdrVturc9w==", - "requires": { - "@floating-ui/react": "^0.19.1", - "@mantine/styles": "6.0.0", - "@mantine/utils": "6.0.0", - "@radix-ui/react-scroll-area": "1.0.2", - "react-remove-scroll": "^2.5.5", - "react-textarea-autosize": "8.3.4" - } - }, - "@mantine/hooks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/hooks/-/hooks-6.0.0.tgz", - "integrity": "sha512-boszkajLaA4qvd/ebDhqZBbMuUXlvJv8EM0jTaXz09IaGPachBKG5WKpXEcwWh2qmrUQL6pyhIbLMgPnvwS0QQ==" - }, - "@mantine/next": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/next/-/next-6.0.0.tgz", - "integrity": "sha512-hJdTi0aLJdwnjavfyxuKnpkbpAhjr4xdGBm9wIWwjHC+wdav9x4oo3/6ZO1sK1+3ENWEgU7ahyYu0fws2d0AZQ==", - "requires": { - "@mantine/ssr": "6.0.0", - "@mantine/styles": "6.0.0" - } - }, - "@mantine/ssr": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/ssr/-/ssr-6.0.0.tgz", - "integrity": "sha512-/kGRSDWw6YZ23AwsZsLR5O7nQgaWPldc9U1G0NGvHWVB6dbkX8Jb08ByQAvem1Fjq7kxnuConuU5lUKMCiRAHA==", - "requires": { - "@mantine/styles": "6.0.0", - "html-react-parser": "1.4.12" - } - }, - "@mantine/styles": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/styles/-/styles-6.0.0.tgz", - "integrity": "sha512-TyqFvdKIhbhnGYBDEJ9QIPit4NzyzQ3ivDfdzeqzd/cJBxFPhxB0sEFU8RppXpXBUlbhLFhulYFEVl2pP6zaeg==", - "requires": { - "clsx": "1.1.1", - "csstype": "3.0.9" - }, - "dependencies": { - "csstype": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", - "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==" - } - } - }, - "@mantine/utils": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@mantine/utils/-/utils-6.0.0.tgz", - "integrity": "sha512-1AalSgzINKP4uv1DBTkJe/jh6yGwC2xaCQE4Atlr2bSHiLezYFMy/deGQ8XLFFv2AL0sjvewLW4ernlFujGMZg==" - }, - "@mongodb-js/saslprep": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.1.tgz", - "integrity": "sha512-t7c5K033joZZMspnHg/gWPE4kandgc2OxE74aYOtGKfgB9VPuVJPix0H6fhmm2erj5PBJ21mqcx34lpIGtUCsQ==", - "requires": { - "sparse-bitfield": "^3.0.3" - } - }, - "@next/env": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.2.3.tgz", - "integrity": "sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow==" - }, - "@next/eslint-plugin-next": { - "version": "13.1.6", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.6.tgz", - "integrity": "sha512-o7cauUYsXjzSJkay8wKjpKJf2uLzlggCsGUkPu3lP09Pv97jYlekTC20KJrjQKmSv5DXV0R/uks2ZXhqjNkqAw==", - "dev": true, - "requires": { - "glob": "7.1.7" - } - }, - "@next/swc-android-arm-eabi": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.3.tgz", - "integrity": "sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw==", - "optional": true - }, - "@next/swc-android-arm64": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-13.2.3.tgz", - "integrity": "sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w==", - "optional": true - }, - "@next/swc-darwin-arm64": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.3.tgz", - "integrity": "sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w==", - "optional": true - }, - "@next/swc-darwin-x64": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.3.tgz", - "integrity": "sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw==", - "optional": true - }, - "@next/swc-freebsd-x64": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.3.tgz", - "integrity": "sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g==", - "optional": true - }, - "@next/swc-linux-arm-gnueabihf": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.3.tgz", - "integrity": "sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA==", - "optional": true - }, - "@next/swc-linux-arm64-gnu": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.3.tgz", - "integrity": "sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA==", - "optional": true - }, - "@next/swc-linux-arm64-musl": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.3.tgz", - "integrity": "sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g==", - "optional": true - }, - "@next/swc-linux-x64-gnu": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.3.tgz", - "integrity": "sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ==", - "optional": true - }, - "@next/swc-linux-x64-musl": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.3.tgz", - "integrity": "sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA==", - "optional": true - }, - "@next/swc-win32-arm64-msvc": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.3.tgz", - "integrity": "sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ==", - "optional": true - }, - "@next/swc-win32-ia32-msvc": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.3.tgz", - "integrity": "sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA==", - "optional": true - }, - "@next/swc-win32-x64-msvc": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.3.tgz", - "integrity": "sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q==", - "optional": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@pkgr/utils": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", - "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "is-glob": "^4.0.3", - "open": "^8.4.0", - "picocolors": "^1.0.0", - "tiny-glob": "^0.2.9", - "tslib": "^2.4.0" - } - }, - "@popperjs/core": { - "version": "2.11.6", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", - "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==" - }, - "@radix-ui/number": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.0.tgz", - "integrity": "sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==", - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/primitive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.0.tgz", - "integrity": "sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==", - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-compose-refs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz", - "integrity": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==", - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-context": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.0.tgz", - "integrity": "sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==", - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-direction": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.0.tgz", - "integrity": "sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==", - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-presence": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.0.tgz", - "integrity": "sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==", - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.0", - "@radix-ui/react-use-layout-effect": "1.0.0" - } - }, - "@radix-ui/react-primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz", - "integrity": "sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==", - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-slot": "1.0.1" - } - }, - "@radix-ui/react-scroll-area": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz", - "integrity": "sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg==", - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/number": "1.0.0", - "@radix-ui/primitive": "1.0.0", - "@radix-ui/react-compose-refs": "1.0.0", - "@radix-ui/react-context": "1.0.0", - "@radix-ui/react-direction": "1.0.0", - "@radix-ui/react-presence": "1.0.0", - "@radix-ui/react-primitive": "1.0.1", - "@radix-ui/react-use-callback-ref": "1.0.0", - "@radix-ui/react-use-layout-effect": "1.0.0" - } - }, - "@radix-ui/react-slot": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz", - "integrity": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==", - "requires": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.0" - } - }, - "@radix-ui/react-use-callback-ref": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz", - "integrity": "sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==", - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@radix-ui/react-use-layout-effect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz", - "integrity": "sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==", - "requires": { - "@babel/runtime": "^7.13.10" - } - }, - "@rushstack/eslint-patch": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", - "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==", - "dev": true - }, - "@swc/helpers": { - "version": "0.4.14", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz", - "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", - "requires": { - "tslib": "^2.4.0" - } - }, - "@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - }, - "@types/hoist-non-react-statics": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", - "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", - "requires": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "@types/lodash": { - "version": "4.14.194", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz", - "integrity": "sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g==" - }, - "@types/lodash.mergewith": { - "version": "4.6.7", - "resolved": "https://registry.npmjs.org/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz", - "integrity": "sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==", - "requires": { - "@types/lodash": "*" - } - }, - "@types/node": { - "version": "18.13.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.13.0.tgz", - "integrity": "sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg==" - }, - "@types/p5": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@types/p5/-/p5-1.7.3.tgz", - "integrity": "sha512-sYeos5Zbb5dx4jp5uDnZDtW3St6+9RtLCi7n2Rl6Ok2a5ofRIWDbXEigl++ppqgAyB20S8czlrrrmzLS1AwJPA==", - "dev": true - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" - }, - "@types/react": { - "version": "18.0.27", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.27.tgz", - "integrity": "sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA==", - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-beautiful-dnd": { - "version": "13.1.4", - "resolved": "https://registry.npmjs.org/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.4.tgz", - "integrity": "sha512-4bIBdzOr0aavN+88q3C7Pgz+xkb7tz3whORYrmSj77wfVEMfiWiooIwVWFR7KM2e+uGTe5BVrXqSfb0aHeflJA==", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/react-dom": { - "version": "18.0.10", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.10.tgz", - "integrity": "sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/react-redux": { - "version": "7.1.25", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.25.tgz", - "integrity": "sha512-bAGh4e+w5D8dajd6InASVIyCo4pZLJ66oLb80F9OBLO1gKESbZcRCJpTT6uLXX+HAB57zw1WTdwJdAsewuTweg==", - "requires": { - "@types/hoist-non-react-statics": "^3.3.0", - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0", - "redux": "^4.0.0" - } - }, - "@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" - }, - "@types/webidl-conversions": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.2.tgz", - "integrity": "sha512-uNv6b/uGRLlCVmelat2rA8bcVd3k/42mV2EmjhPh6JLkd35T5bgwR/t6xy7a9MWhd9sixIeBUzhBenvk3NO+DQ==" - }, - "@types/whatwg-url": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", - "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", - "requires": { - "@types/node": "*", - "@types/webidl-conversions": "*" - } - }, - "@typescript-eslint/parser": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.51.0.tgz", - "integrity": "sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==", - "dev": true, - "requires": { - "@typescript-eslint/scope-manager": "5.51.0", - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/typescript-estree": "5.51.0", - "debug": "^4.3.4" - } - }, - "@typescript-eslint/scope-manager": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz", - "integrity": "sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/visitor-keys": "5.51.0" - } - }, - "@typescript-eslint/types": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz", - "integrity": "sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz", - "integrity": "sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/visitor-keys": "5.51.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "dependencies": { - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - } - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz", - "integrity": "sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.51.0", - "eslint-visitor-keys": "^3.3.0" - } - }, - "@vygruppen/spor-accordion-react": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vygruppen/spor-accordion-react/-/spor-accordion-react-1.0.1.tgz", - "integrity": "sha512-HakCVEknnh6w24QEp/maU01/m1XP6EZhN5Xq7ITw3EJWBNzfYZ2k4U/NM1+Xm+/NdLpsIMyuHWL8RS2o/PKW2g==" - }, - "@zag-js/element-size": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.3.2.tgz", - "integrity": "sha512-bVvvigUGvAuj7PCkE5AbzvTJDTw5f3bg9nQdv+ErhVN8SfPPppLJEmmWdxqsRzrHXgx8ypJt/+Ty0kjtISVDsQ==" - }, - "@zag-js/focus-visible": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-0.2.2.tgz", - "integrity": "sha512-0j2gZq8HiZ51z4zNnSkF1iSkqlwRDvdH+son3wHdoz+7IUdMN/5Exd4TxMJ+gq2Of1DiXReYLL9qqh2PdQ4wgA==" - }, - "abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - }, - "acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==" - }, - "acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", - "requires": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" - }, - "dependencies": { - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" - } - } - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true - }, - "acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dev": true, - "requires": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - } - } - }, - "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "requires": { - "debug": "4" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "aria-hidden": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.2.tgz", - "integrity": "sha512-6y/ogyDTk/7YAe91T3E2PR1ALVKyM2QbTio5HwM+N1Q6CMlCKhvClyIjkckBswa0f2xJhjsfzIGa1yVSe1UMVA==", - "requires": { - "tslib": "^2.0.0" - } - }, - "aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, - "requires": { - "deep-equal": "^2.0.5" - } - }, - "array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" - } - }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - } - }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true - }, - "axe-core": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", - "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", - "dev": true - }, - "axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", - "dev": true, - "requires": { - "deep-equal": "^2.0.5" - } - }, - "babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "requires": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "blockly": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/blockly/-/blockly-9.2.1.tgz", - "integrity": "sha512-8iy7keOE6A3lk+PIaDOIxuzv7eXUJqNKNNn1NXkd/246YSa8DkkfgaZ3eEskejkfm/uRgi8Y4HSU1dQRCfN+Hw==", - "requires": { - "jsdom": "20.0.3" - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - } - }, - "bson": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/bson/-/bson-6.2.0.tgz", - "integrity": "sha512-ID1cI+7bazPDyL9wYy9GaQ8gEEohWvcUl/Yf0dIdutJxnmInEEyCsb4awy/OiBfall7zBA179Pahi3vCdFze3Q==" - }, - "buffer-from": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz", - "integrity": "sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==" - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001451", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz", - "integrity": "sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w==" - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "color2k": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", - "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==" - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "compute-scroll-into-view": { - "version": "1.0.20", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz", - "integrity": "sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "copy-to-clipboard": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", - "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", - "requires": { - "toggle-selection": "^1.0.6" - } - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "css-box-model": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", - "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", - "requires": { - "tiny-invariant": "^1.0.6" - } - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true - }, - "cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - }, - "cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "requires": { - "cssom": "~0.3.6" - }, - "dependencies": { - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - } - }, - "csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" - }, - "damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true - }, - "data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", - "requires": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - }, - "deep-equal": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - } - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - }, - "define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true - }, - "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "dev": true, - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "defined": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", - "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", - "dev": true - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - }, - "detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" - }, - "detective": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", - "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", - "dev": true, - "requires": { - "acorn-node": "^1.8.2", - "defined": "^1.0.0", - "minimist": "^1.2.6" - } - }, - "didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "dependencies": { - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - } - } - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", - "requires": { - "webidl-conversions": "^7.0.0" - } - }, - "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "requires": { - "domelementtype": "^2.2.0" - } - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - }, - "dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" - }, - "duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", - "requires": { - "readable-stream": "^2.0.2" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "electron-to-chromium": { - "version": "1.4.289", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.289.tgz", - "integrity": "sha512-relLdMfPBxqGCxy7Gyfm1HcbRPcFUJdlgnCPVgQ23sr1TvUrRJz0/QPoGP0+x41wOVSTN/Wi3w6YDgHiHJGOzg==", - "dev": true - }, - "embla-carousel": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-7.0.9.tgz", - "integrity": "sha512-g8pGPd1BxexiZgw8F1aNM1KL3x3eEcz6TGTz20AuqCCynASBV7/h1+aS2rySDc/hHkXqbU8dk7TDhW71LCqVkQ==" - }, - "embla-carousel-react": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-7.0.9.tgz", - "integrity": "sha512-KGnnZWukN+N2H6VjQf6C9mWmInqtCIiInhkGsJ9ckxri3m3Ks6wRDz+RRlV1kcuPHtRoxyFuBBGNwftWqMO9Pw==", - "requires": { - "embla-carousel": "7.0.9" - } - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "entities": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==" - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-abstract": { - "version": "1.21.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", - "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", - "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.3", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.4", - "is-array-buffer": "^3.0.1", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - } - }, - "es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - } - }, - "es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - } - }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - }, - "escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", - "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - }, - "dependencies": { - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true - } - } - }, - "eslint": { - "version": "8.33.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.33.0.tgz", - "integrity": "sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA==", - "dev": true, - "requires": { - "@eslint/eslintrc": "^1.4.1", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "dependencies": { - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - } - } - }, - "eslint-config-next": { - "version": "13.1.6", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.1.6.tgz", - "integrity": "sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw==", - "dev": true, - "requires": { - "@next/eslint-plugin-next": "13.1.6", - "@rushstack/eslint-patch": "^1.1.3", - "@typescript-eslint/parser": "^5.42.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.31.7", - "eslint-plugin-react-hooks": "^4.5.0" - } - }, - "eslint-config-prettier": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz", - "integrity": "sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==", - "dev": true - }, - "eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "eslint-import-resolver-typescript": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz", - "integrity": "sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==", - "dev": true, - "requires": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.10.0", - "get-tsconfig": "^4.2.0", - "globby": "^13.1.2", - "is-core-module": "^2.10.0", - "is-glob": "^4.0.3", - "synckit": "^0.8.4" - } - }, - "eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", - "dev": true, - "requires": { - "debug": "^3.2.7" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", - "dev": true, - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "has": "^1.0.3", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.6", - "resolve": "^1.22.1", - "semver": "^6.3.0", - "tsconfig-paths": "^3.14.1" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.11" - } - } - } - }, - "eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", - "dev": true, - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, - "dependencies": { - "resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dev": true, - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - } - } - }, - "eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true - }, - "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^2.0.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true - } - } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - }, - "espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", - "dev": true, - "requires": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "exenv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "focus-lock": { - "version": "0.11.6", - "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.6.tgz", - "integrity": "sha512-KSuV3ur4gf2KqMNoZx3nXNVhqCkn42GuTYCX4tXPEwf0MjpFQmNMiN6m7dXaUXgIoivL6/65agoUMg4RLS0Vbg==", - "requires": { - "tslib": "^2.0.3" - } - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "requires": { - "is-callable": "^1.1.3" - } - }, - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", - "dev": true - }, - "framer-motion": { - "version": "10.12.10", - "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-10.12.10.tgz", - "integrity": "sha512-f/VkrpxfG4xSmBi105/NCfcTt219IgglQEUR0BsuFZAg+be6N3QAcujFyBEvBvbDOSP9Ccv6OMiaY0HFMnBoMA==", - "requires": { - "@emotion/is-prop-valid": "^0.8.2", - "tslib": "^2.4.0" - }, - "dependencies": { - "@emotion/is-prop-valid": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", - "optional": true, - "requires": { - "@emotion/memoize": "0.7.4" - } - }, - "@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==", - "optional": true - } - } - }, - "framesync": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz", - "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==", - "requires": { - "tslib": "2.4.0" - }, - "dependencies": { - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - } - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - } - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true - }, - "get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "get-tsconfig": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.4.0.tgz", - "integrity": "sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==", - "dev": true - }, - "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "requires": { - "define-properties": "^1.1.3" - } - }, - "globalyzer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", - "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", - "dev": true - }, - "globby": { - "version": "13.1.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", - "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", - "dev": true, - "requires": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - } - }, - "globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", - "dev": true - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "requires": { - "react-is": "^16.7.0" - } - }, - "html-dom-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.2.0.tgz", - "integrity": "sha512-2HIpFMvvffsXHFUFjso0M9LqM+1Lm22BF+Df2ba+7QHJXjk63pWChEnI6YG27eaWqUdfnh5/Vy+OXrNTtepRsg==", - "requires": { - "domhandler": "4.3.1", - "htmlparser2": "7.2.0" - } - }, - "html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "requires": { - "whatwg-encoding": "^2.0.0" - } - }, - "html-react-parser": { - "version": "1.4.12", - "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.12.tgz", - "integrity": "sha512-nqYQzr4uXh67G9ejAG7djupTHmQvSTgjY83zbXLRfKHJ0F06751jXx6WKSFARDdXxCngo2/7H4Rwtfeowql4gQ==", - "requires": { - "domhandler": "4.3.1", - "html-dom-parser": "1.2.0", - "react-property": "2.0.0", - "style-to-js": "1.1.0" - } - }, - "html-tokenize": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-tokenize/-/html-tokenize-2.0.1.tgz", - "integrity": "sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w==", - "requires": { - "buffer-from": "~0.1.1", - "inherits": "~2.0.1", - "minimist": "~1.2.5", - "readable-stream": "~1.0.27-1", - "through2": "~0.4.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - } - }, - "htmlparser2": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", - "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.2", - "domutils": "^2.8.0", - "entities": "^3.0.1" - }, - "dependencies": { - "entities": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", - "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" - } - } - }, - "http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "requires": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" - }, - "internal-slot": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz", - "integrity": "sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - }, - "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-array-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz", - "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-typed-array": "^1.1.10" - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true - }, - "is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true - }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - } - }, - "is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "requires": { - "is-docker": "^2.0.0" - } - }, - "isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "js-sdsl": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", - "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", - "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", - "requires": { - "abab": "^2.0.6", - "acorn": "^8.8.1", - "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", - "xml-name-validator": "^4.0.0" - } - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "jsx-ast-utils": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", - "dev": true, - "requires": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.3" - } - }, - "kareem": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz", - "integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==" - }, - "language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true - }, - "language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "dev": true, - "requires": { - "language-subtag-registry": "~0.3.2" - } - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "dependencies": { - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - } - } - }, - "lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", - "dev": true - }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.mergewith": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", - "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "memoize-one": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", - "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" - }, - "memory-pager": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", - "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==" - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { - "mime-db": "1.52.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", - "dev": true - }, - "mongo": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/mongo/-/mongo-0.1.0.tgz", - "integrity": "sha512-2MPq+GCNKhah0V/g/HIQI/S1h6Ycd87KPuXAITkeXWT6wncvABFxOaXdzCKlRvLSQRUkDimllrRrhoHUTD8usg==", - "requires": { - "mongodb": "*" - } - }, - "mongodb": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.2.0.tgz", - "integrity": "sha512-d7OSuGjGWDZ5usZPqfvb36laQ9CPhnWkAGHT61x5P95p/8nMVeH8asloMwW6GcYFeB0Vj4CB/1wOTDG2RA9BFA==", - "requires": { - "@mongodb-js/saslprep": "^1.1.0", - "bson": "^6.2.0", - "mongodb-connection-string-url": "^2.6.0" - } - }, - "mongodb-connection-string-url": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz", - "integrity": "sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==", - "requires": { - "@types/whatwg-url": "^8.2.1", - "whatwg-url": "^11.0.0" - } - }, - "mongoose": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.6.4.tgz", - "integrity": "sha512-kadPkS/f5iZJrrMxxOvSoOAErXmdnb28lMvHmuYgmV1ZQTpRqpp132PIPHkJMbG4OC2H0eSXYw/fNzYTH+LUcw==", - "requires": { - "bson": "^5.5.0", - "kareem": "2.5.1", - "mongodb": "5.9.0", - "mpath": "0.9.0", - "mquery": "5.0.0", - "ms": "2.1.3", - "sift": "16.0.1" - }, - "dependencies": { - "bson": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/bson/-/bson-5.5.1.tgz", - "integrity": "sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==" - }, - "mongodb": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.9.0.tgz", - "integrity": "sha512-g+GCMHN1CoRUA+wb1Agv0TI4YTSiWr42B5ulkiAfLLHitGK1R+PkSAf3Lr5rPZwi/3F04LiaZEW0Kxro9Fi2TA==", - "requires": { - "@mongodb-js/saslprep": "^1.1.0", - "bson": "^5.5.0", - "mongodb-connection-string-url": "^2.6.0", - "socks": "^2.7.1" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - } - }, - "mpath": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", - "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==" - }, - "mquery": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", - "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", - "requires": { - "debug": "4.x" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "multipipe": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz", - "integrity": "sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ==", - "requires": { - "duplexer2": "^0.1.2", - "object-assign": "^4.1.0" - } - }, - "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "next": { - "version": "13.2.3", - "resolved": "https://registry.npmjs.org/next/-/next-13.2.3.tgz", - "integrity": "sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w==", - "requires": { - "@next/env": "13.2.3", - "@next/swc-android-arm-eabi": "13.2.3", - "@next/swc-android-arm64": "13.2.3", - "@next/swc-darwin-arm64": "13.2.3", - "@next/swc-darwin-x64": "13.2.3", - "@next/swc-freebsd-x64": "13.2.3", - "@next/swc-linux-arm-gnueabihf": "13.2.3", - "@next/swc-linux-arm64-gnu": "13.2.3", - "@next/swc-linux-arm64-musl": "13.2.3", - "@next/swc-linux-x64-gnu": "13.2.3", - "@next/swc-linux-x64-musl": "13.2.3", - "@next/swc-win32-arm64-msvc": "13.2.3", - "@next/swc-win32-ia32-msvc": "13.2.3", - "@next/swc-win32-x64-msvc": "13.2.3", - "@swc/helpers": "0.4.14", - "caniuse-lite": "^1.0.30001406", - "postcss": "8.4.14", - "styled-jsx": "5.1.1" - }, - "dependencies": { - "postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - } - } - }, - "node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", - "dev": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true - }, - "nwsapi": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", - "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - }, - "object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "dev": true - }, - "object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true - }, - "object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dev": true, - "requires": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "dev": true, - "requires": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - } - }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "requires": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "dependencies": { - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - } - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "p5": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/p5/-/p5-1.8.0.tgz", - "integrity": "sha512-LHzRRl+aWEZVXmK+L9TDRNw5zm90wvwMdY7yTmsFkdNeXrU9n2KSZbonCTXkyGgriguovxJrDDgyhkynOxWB1A==" - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "requires": { - "entities": "^4.4.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true - }, - "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", - "dev": true, - "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - } - }, - "postcss-js": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", - "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", - "dev": true, - "requires": { - "camelcase-css": "^2.0.1" - } - }, - "postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dev": true, - "requires": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - } - }, - "postcss-nested": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", - "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.10" - } - }, - "postcss-selector-parser": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", - "dev": true, - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - } - }, - "postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==" - }, - "prettier": { - "version": "2.8.4", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.4.tgz", - "integrity": "sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" - }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true - }, - "raf-schd": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz", - "integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==" - }, - "react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "react-beautiful-dnd": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz", - "integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==", - "requires": { - "@babel/runtime": "^7.9.2", - "css-box-model": "^1.2.0", - "memoize-one": "^5.1.1", - "raf-schd": "^4.0.2", - "react-redux": "^7.2.0", - "redux": "^4.0.4", - "use-memo-one": "^1.1.1" - } - }, - "react-blockly": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/react-blockly/-/react-blockly-7.0.1.tgz", - "integrity": "sha512-Lsteh2KmCjwMk/bRFPFTEnc0ylpgseLC1S9S/fs8kE8vnABJFq385G9X+WHtJ8Txpd/YhODdIhZ+rlU4EavasA==", - "requires": { - "blockly": ">= 3.20200024.0", - "prop-types": ">= 15.6.0" - } - }, - "react-clientside-effect": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz", - "integrity": "sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==", - "requires": { - "@babel/runtime": "^7.12.13" - } - }, - "react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "requires": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - } - }, - "react-fast-compare": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.1.tgz", - "integrity": "sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==" - }, - "react-focus-lock": { - "version": "2.9.4", - "resolved": "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-2.9.4.tgz", - "integrity": "sha512-7pEdXyMseqm3kVjhdVH18sovparAzLg5h6WvIx7/Ck3ekjhrrDMEegHSa3swwC8wgfdd7DIdUVRGeiHT9/7Sgg==", - "requires": { - "@babel/runtime": "^7.0.0", - "focus-lock": "^0.11.6", - "prop-types": "^15.6.2", - "react-clientside-effect": "^1.2.6", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - } - }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "react-modal": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz", - "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==", - "requires": { - "exenv": "^1.2.0", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.0", - "warning": "^4.0.3" - } - }, - "react-popper": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "requires": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" - } - }, - "react-property": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz", - "integrity": "sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==" - }, - "react-redux": { - "version": "7.2.9", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", - "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", - "requires": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "dependencies": { - "react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - } - } - }, - "react-remove-scroll": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", - "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", - "requires": { - "react-remove-scroll-bar": "^2.3.3", - "react-style-singleton": "^2.2.1", - "tslib": "^2.1.0", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - } - }, - "react-remove-scroll-bar": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz", - "integrity": "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==", - "requires": { - "react-style-singleton": "^2.2.1", - "tslib": "^2.0.0" - } - }, - "react-sortable-hoc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz", - "integrity": "sha512-JZUw7hBsAHXK7PTyErJyI7SopSBFRcFHDjWW5SWjcugY0i6iH7f+eJkY8cJmGMlZ1C9xz1J3Vjz0plFpavVeRg==", - "requires": { - "@babel/runtime": "^7.2.0", - "invariant": "^2.2.4", - "prop-types": "^15.5.7" - } - }, - "react-style-singleton": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", - "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", - "requires": { - "get-nonce": "^1.0.0", - "invariant": "^2.2.4", - "tslib": "^2.0.0" - } - }, - "react-textarea-autosize": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz", - "integrity": "sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==", - "requires": { - "@babel/runtime": "^7.10.2", - "use-composed-ref": "^1.3.0", - "use-latest": "^1.2.1" - } - }, - "react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "requires": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - } - }, - "reactstrap": { - "version": "9.1.6", - "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-9.1.6.tgz", - "integrity": "sha512-79h/L/pvMJIz198VULMpLbEyXFeArFTLAnEtk5anppJhAnZnfyM1pNuQWZNGXy6cUlgsaEy2gBziAw4tockOnw==", - "requires": { - "@babel/runtime": "^7.12.5", - "@popperjs/core": "^2.6.0", - "classnames": "^2.2.3", - "prop-types": "^15.5.8", - "react-popper": "^2.2.4", - "react-transition-group": "^4.4.2" - } - }, - "read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "requires": { - "pify": "^2.3.0" - } - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - } - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "requires": { - "@babel/runtime": "^7.9.2" - } - }, - "regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - } - }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } - } - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", - "requires": { - "xmlchars": "^2.2.0" - } - }, - "scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "sift": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz", - "integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==" - }, - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - }, - "socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "requires": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - }, - "sparse-bitfield": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", - "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", - "requires": { - "memory-pager": "^1.0.2" - } - }, - "stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "requires": { - "internal-slot": "^1.0.4" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" - }, - "string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - } - }, - "string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "style-to-js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.0.tgz", - "integrity": "sha512-1OqefPDxGrlMwcbfpsTVRyzwdhr4W0uxYQzeA2F1CBc8WG04udg2+ybRnvh3XYL4TdHQrCahLtax2jc8xaE6rA==", - "requires": { - "style-to-object": "0.3.0" - } - }, - "style-to-object": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", - "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", - "requires": { - "inline-style-parser": "0.1.1" - } - }, - "styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "requires": { - "client-only": "0.0.1" - } - }, - "stylis": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", - "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - }, - "symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - }, - "synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", - "dev": true, - "requires": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" - } - }, - "tabbable": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.1.1.tgz", - "integrity": "sha512-4kl5w+nCB44EVRdO0g/UGoOp3vlwgycUVtkk/7DPyeLZUCuNFFKCFG6/t/DgHLrUPHjrZg6s5tNm+56Q2B0xyg==" - }, - "tailwindcss": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz", - "integrity": "sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==", - "dev": true, - "requires": { - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.1", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.2.12", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "lilconfig": "^2.0.6", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.18", - "postcss-import": "^14.1.0", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "6.0.0", - "postcss-selector-parser": "^6.0.10", - "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.1" - }, - "dependencies": { - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - } - } - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "through2": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", - "integrity": "sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ==", - "requires": { - "readable-stream": "~1.0.17", - "xtend": "~2.1.1" - }, - "dependencies": { - "object-keys": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", - "integrity": "sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==" - }, - "xtend": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", - "integrity": "sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==", - "requires": { - "object-keys": "~0.4.0" - } - } - } - }, - "tiny-glob": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", - "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", - "dev": true, - "requires": { - "globalyzer": "0.1.0", - "globrex": "^0.1.2" - } - }, - "tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" - }, - "tough-cookie": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", - "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", - "requires": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - } - }, - "tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "requires": { - "punycode": "^2.1.1" - } - }, - "tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } - } - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - }, - "typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - } - }, - "typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true - }, - "unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - } - }, - "universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - }, - "update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "dev": true, - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "use-callback-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.0.tgz", - "integrity": "sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==", - "requires": { - "tslib": "^2.0.0" - } - }, - "use-composed-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", - "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==" - }, - "use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==" - }, - "use-latest": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", - "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", - "requires": { - "use-isomorphic-layout-effect": "^1.1.1" - } - }, - "use-memo-one": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz", - "integrity": "sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==" - }, - "use-sidecar": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", - "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", - "requires": { - "detect-node-es": "^1.1.0", - "tslib": "^2.0.0" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "w3c-xmlserializer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", - "requires": { - "xml-name-validator": "^4.0.0" - } - }, - "warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - }, - "whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", - "requires": { - "iconv-lite": "0.6.3" - } - }, - "whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - }, - "whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "requires": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "requires": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - } - }, - "which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - } - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "ws": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.1.tgz", - "integrity": "sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==" - }, - "xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - }, - "xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true - } - } -} diff --git a/package.json b/package.json new file mode 100644 index 0000000..689aff2 --- /dev/null +++ b/package.json @@ -0,0 +1,54 @@ +{ + "private": true, + "scripts": { + "dev": "node app.js", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "@chakra-ui/react": "^2.6.1", + "@dnd-kit/core": "^6.0.8", + "@dnd-kit/sortable": "^7.0.2", + "@dnd-kit/utilities": "^3.2.1", + "@emotion/react": "^11.10.6", + "@emotion/server": "^11.10.0", + "@emotion/styled": "^11.11.0", + "@mantine/carousel": "^6.0.0", + "@mantine/core": "^6.0.0", + "@mantine/hooks": "^6.0.0", + "@mantine/next": "^6.0.0", + "@vygruppen/spor-accordion-react": "^1.0.1", + "blockly": "^9.2.1", + "dotenv": "^16.3.1", + "embla-carousel-react": "^7.0.9", + "framer-motion": "^10.12.10", + "mongo": "^0.1.0", + "mongoose": "^7.1.1", + "next": "latest", + "p5": "^1.8.0", + "react": "18.2.0", + "react-beautiful-dnd": "^13.1.1", + "react-blockly": "^7.0.1", + "react-dom": "18.2.0", + "react-modal": "^3.16.1", + "react-sortable-hoc": "^2.0.0", + "reactstrap": "^9.1.6" + }, + "devDependencies": { + "@types/node": "18.13.0", + "@types/p5": "^1.7.3", + "@types/react": "18.0.27", + "@types/react-beautiful-dnd": "^13.1.4", + "@types/react-dom": "18.0.10", + "autoprefixer": "^10.4.13", + "eslint": "^8.33.0", + "eslint-config-next": "^13.1.6", + "eslint-config-prettier": "^8.6.0", + "postcss": "^8.4.21", + "prettier": "^2.8.4", + "tailwindcss": "^3.2.4", + "typescript": "4.9.5" + } + } + \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 5e48eda..af537bc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,849 +2,860 @@ # yarn lockfile v1 +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + "@babel/code-frame@^7.0.0": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: - "@babel/highlight" "^7.18.6" + "@babel/highlight" "^7.23.4" + chalk "^2.4.2" "@babel/helper-module-imports@^7.16.7": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz" - integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== dependencies: - "@babel/types" "^7.18.6" + "@babel/types" "^7.22.15" -"@babel/helper-string-parser@^7.19.4": - version "7.19.4" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz" - integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz" - integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== +"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.9.tgz#47791a15e4603bb5f905bc0753801cf21d6345f7" + integrity sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw== dependencies: - regenerator-runtime "^0.13.11" + regenerator-runtime "^0.14.0" -"@babel/runtime@^7.20.7": - version "7.20.13" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz" - integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA== +"@babel/types@^7.22.15": + version "7.23.9" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.9.tgz#1dd7b59a9a2b5c87f8b41e52770b5ecbf492e002" + integrity sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q== dependencies: - regenerator-runtime "^0.13.11" - -"@babel/types@^7.18.6": - version "7.21.2" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz" - integrity sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw== - dependencies: - "@babel/helper-string-parser" "^7.19.4" - "@babel/helper-validator-identifier" "^7.19.1" + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@chakra-ui/accordion@2.1.11": - version "2.1.11" - resolved "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.1.11.tgz" - integrity sha512-mfVPmqETp9pyRDHJ33AdF19oHv/LyxVzQJtlxUByuvs8Cj9QQZ2LQLg5kejm+b3mj03A7A6yfbuo3RNaI4Bhsg== - dependencies: - "@chakra-ui/descendant" "3.0.14" - "@chakra-ui/icon" "3.0.16" - "@chakra-ui/react-context" "2.0.8" - "@chakra-ui/react-use-controllable-state" "2.0.8" - "@chakra-ui/react-use-merge-refs" "2.0.7" +"@chakra-ui/accordion@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/accordion/-/accordion-2.3.1.tgz#a326509e286a5c4e8478de9bc2b4b05017039e6b" + integrity sha512-FSXRm8iClFyU+gVaXisOSEw0/4Q+qZbFRiuhIAkVU6Boj0FxAMrlo9a8AV5TuF77rgaHytCdHk0Ng+cyUijrag== + dependencies: + "@chakra-ui/descendant" "3.1.0" + "@chakra-ui/icon" "3.2.0" + "@chakra-ui/react-context" "2.1.0" + "@chakra-ui/react-use-controllable-state" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/transition" "2.0.16" + "@chakra-ui/transition" "2.1.0" -"@chakra-ui/alert@2.1.0": - version "2.1.0" - resolved "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.1.0.tgz" - integrity sha512-OcfHwoXI5VrmM+tHJTHT62Bx6TfyfCxSa0PWUOueJzSyhlUOKBND5we6UtrOB7D0jwX45qKKEDJOLG5yCG21jQ== +"@chakra-ui/alert@2.2.2": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/alert/-/alert-2.2.2.tgz#aeba951d120c7c6e69d5f515a695ad6e4db43ffe" + integrity sha512-jHg4LYMRNOJH830ViLuicjb3F+v6iriE/2G5T+Sd0Hna04nukNJ1MxUmBPE+vI22me2dIflfelu2v9wdB6Pojw== dependencies: - "@chakra-ui/icon" "3.0.16" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/icon" "3.2.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/spinner" "2.0.13" + "@chakra-ui/spinner" "2.1.0" -"@chakra-ui/anatomy@2.1.2": - version "2.1.2" - resolved "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.1.2.tgz" - integrity sha512-pKfOS/mztc4sUXHNc8ypJ1gPWSolWT770jrgVRfolVbYlki8y5Y+As996zMF6k5lewTu6j9DQequ7Cc9a69IVQ== +"@chakra-ui/anatomy@2.2.2": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/anatomy/-/anatomy-2.2.2.tgz#2d0e14cba2534d92077ca28abf8c183b6e27897b" + integrity sha512-MV6D4VLRIHr4PkW4zMyqfrNS1mPlCTiCXwvYGtDFQYr+xHFfonhAuf9WjsSc0nyp2m0OdkSLnzmVKkZFLo25Tg== -"@chakra-ui/avatar@2.2.10": - version "2.2.10" - resolved "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.2.10.tgz" - integrity sha512-Scc0qJtJcxoGOaSS4TkoC2PhVLMacrBcfaNfLqV6wES56BcsjegHvpxREFunZkgVNph/XRHW6J1xOclnsZiPBQ== +"@chakra-ui/avatar@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/avatar/-/avatar-2.3.0.tgz#f018a2714d1e3ba5970bcf66558887925fdfccf4" + integrity sha512-8gKSyLfygnaotbJbDMHDiJoF38OHXUYVme4gGxZ1fLnQEdPVEaIWfH+NndIjOM0z8S+YEFnT9KyGMUtvPrBk3g== dependencies: - "@chakra-ui/image" "2.0.16" + "@chakra-ui/image" "2.1.0" "@chakra-ui/react-children-utils" "2.0.6" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/breadcrumb@2.1.5": - version "2.1.5" - resolved "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.1.5.tgz" - integrity sha512-p3eQQrHQBkRB69xOmNyBJqEdfCrMt+e0eOH+Pm/DjFWfIVIbnIaFbmDCeWClqlLa21Ypc6h1hR9jEmvg8kmOog== +"@chakra-ui/breadcrumb@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/breadcrumb/-/breadcrumb-2.2.0.tgz#751bc48498f3c403f97b5d9aae528ebfd405ef48" + integrity sha512-4cWCG24flYBxjruRi4RJREWTGF74L/KzI2CognAW/d/zWR0CjiScuJhf37Am3LFbCySP6WSoyBOtTIoTA4yLEA== dependencies: "@chakra-ui/react-children-utils" "2.0.6" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/breakpoint-utils@2.0.8": version "2.0.8" - resolved "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.8.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.8.tgz#750d3712668b69f6e8917b45915cee0e08688eed" integrity sha512-Pq32MlEX9fwb5j5xx8s18zJMARNHlQZH2VH1RZgfgRDpp7DcEgtRW5AInfN5CfqdHLO1dGxA7I3MqEuL5JnIsA== dependencies: "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/button@2.0.18": - version "2.0.18" - resolved "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.18.tgz" - integrity sha512-E3c99+lOm6ou4nQVOTLkG+IdOPMjsQK+Qe7VyP8A/xeAMFONuibrWPRPpprr4ZkB4kEoLMfNuyH2+aEza3ScUA== +"@chakra-ui/button@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/button/-/button-2.1.0.tgz#623ed32cc92fc8e52492923e9924791fc6f25447" + integrity sha512-95CplwlRKmmUXkdEp/21VkEWgnwcx2TOBG6NfYlsuLBDHSLlo5FKIiE2oSi4zXc4TLcopGcWPNcm/NDaSC5pvA== dependencies: - "@chakra-ui/react-context" "2.0.8" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-context" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/spinner" "2.0.13" + "@chakra-ui/spinner" "2.1.0" -"@chakra-ui/card@2.1.6": - version "2.1.6" - resolved "https://registry.npmjs.org/@chakra-ui/card/-/card-2.1.6.tgz" - integrity sha512-fFd/WAdRNVY/WOSQv4skpy0WeVhhI0f7dTY1Sm0jVl0KLmuP/GnpsWtKtqWjNcV00K963EXDyhlk6+9oxbP4gw== +"@chakra-ui/card@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/card/-/card-2.2.0.tgz#b5e59dc51c171fced76ea76bf26088803b8bc184" + integrity sha512-xUB/k5MURj4CtPAhdSoXZidUbm8j3hci9vnc+eZJVDqhDOShNlD6QeniQNRPRys4lWAQLCbFcrwL29C8naDi6g== dependencies: "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/checkbox@2.2.15": - version "2.2.15" - resolved "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.2.15.tgz" - integrity sha512-Ju2yQjX8azgFa5f6VLPuwdGYobZ+rdbcYqjiks848JvPc75UsPhpS05cb4XlrKT7M16I8txDA5rPJdqqFicHCA== +"@chakra-ui/checkbox@2.3.2": + version "2.3.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/checkbox/-/checkbox-2.3.2.tgz#4ecb14a2f57b7470d1a58542ca4691c3b105bfa1" + integrity sha512-85g38JIXMEv6M+AcyIGLh7igNtfpAN6KGQFYxY9tBj0eWvWk4NKQxvqqyVta0bSAyIl1rixNIIezNpNWk2iO4g== dependencies: - "@chakra-ui/form-control" "2.0.18" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/form-control" "2.2.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-callback-ref" "2.0.7" - "@chakra-ui/react-use-controllable-state" "2.0.8" - "@chakra-ui/react-use-merge-refs" "2.0.7" - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" - "@chakra-ui/react-use-update-effect" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" + "@chakra-ui/react-use-controllable-state" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" + "@chakra-ui/react-use-update-effect" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/visually-hidden" "2.0.15" - "@zag-js/focus-visible" "0.2.2" + "@chakra-ui/visually-hidden" "2.2.0" + "@zag-js/focus-visible" "0.16.0" -"@chakra-ui/clickable@2.0.14": - version "2.0.14" - resolved "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.14.tgz" - integrity sha512-jfsM1qaD74ZykLHmvmsKRhDyokLUxEfL8Il1VoZMNX5RBI0xW/56vKpLTFF/v/+vLPLS+Te2cZdD4+2O+G6ulA== +"@chakra-ui/clickable@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/clickable/-/clickable-2.1.0.tgz#800fa8d10cf45a41fc50a3df32c679a3ce1921c3" + integrity sha512-flRA/ClPUGPYabu+/GLREZVZr9j2uyyazCAUHAdrTUEdDYCr31SVGhgh7dgKdtq23bOvAQJpIJjw/0Bs0WvbXw== dependencies: - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/close-button@2.0.17": - version "2.0.17" - resolved "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.17.tgz" - integrity sha512-05YPXk456t1Xa3KpqTrvm+7smx+95dmaPiwjiBN3p7LHUQVHJd8ZXSDB0V+WKi419k3cVQeJUdU/azDO2f40sw== +"@chakra-ui/close-button@2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/close-button/-/close-button-2.1.1.tgz#995b245c56eb41465a71d8667840c238618a7b66" + integrity sha512-gnpENKOanKexswSVpVz7ojZEALl2x5qjLYNqSQGbxz+aP9sOXPfUS56ebyBrre7T7exuWGiFeRwnM0oVeGPaiw== dependencies: - "@chakra-ui/icon" "3.0.16" + "@chakra-ui/icon" "3.2.0" -"@chakra-ui/color-mode@2.1.12": - version "2.1.12" - resolved "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.12.tgz" - integrity sha512-sYyfJGDoJSLYO+V2hxV9r033qhte5Nw/wAn5yRGGZnEEN1dKPEdWQ3XZvglWSDTNd0w9zkoH2w6vP4FBBYb/iw== +"@chakra-ui/color-mode@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/color-mode/-/color-mode-2.2.0.tgz#828d47234c74ba2fb4c5dd63a63331aead20b9f6" + integrity sha512-niTEA8PALtMWRI9wJ4LL0CSBDo8NBfLNp4GD6/0hstcm3IlbBHTVKxN6HwSaoNYfphDQLxCjT4yG+0BJA5tFpg== dependencies: - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" -"@chakra-ui/control-box@2.0.13": - version "2.0.13" - resolved "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.13.tgz" - integrity sha512-FEyrU4crxati80KUF/+1Z1CU3eZK6Sa0Yv7Z/ydtz9/tvGblXW9NFanoomXAOvcIFLbaLQPPATm9Gmpr7VG05A== +"@chakra-ui/control-box@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/control-box/-/control-box-2.1.0.tgz#0f4586797b3154c02463bc5c106782e70c88f04f" + integrity sha512-gVrRDyXFdMd8E7rulL0SKeoljkLQiPITFnsyMO8EFHNZ+AHt5wK4LIguYVEq88APqAGZGfHFWXr79RYrNiE3Mg== -"@chakra-ui/counter@2.0.14": - version "2.0.14" - resolved "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.14.tgz" - integrity sha512-KxcSRfUbb94dP77xTip2myoE7P2HQQN4V5fRJmNAGbzcyLciJ+aDylUU/UxgNcEjawUp6Q242NbWb1TSbKoqog== +"@chakra-ui/counter@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/counter/-/counter-2.1.0.tgz#e413a2f1093a18f847bb7aa240117fde788a59e6" + integrity sha512-s6hZAEcWT5zzjNz2JIWUBzRubo9la/oof1W7EKZVVfPYHERnl5e16FmBC79Yfq8p09LQ+aqFKm/etYoJMMgghw== dependencies: "@chakra-ui/number-utils" "2.0.7" - "@chakra-ui/react-use-callback-ref" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/css-reset@2.1.1": - version "2.1.1" - resolved "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.1.1.tgz" - integrity sha512-jwEOfIAWmQsnChHQTW/eRE+dfE4MjmhvSvoUug5nkV1pI7veC/20noFlIZxzi82EbiQI8Fs0+Jnusgxr2yaOHA== +"@chakra-ui/css-reset@2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/css-reset/-/css-reset-2.3.0.tgz#83e3160a9c2a12431cad0ee27ebfbf3aedc5c9c7" + integrity sha512-cQwwBy5O0jzvl0K7PLTLgp8ijqLPKyuEMiDXwYzl95seD3AoeuoCLyzZcJtVqaUZ573PiBdAbY/IlZcwDOItWg== -"@chakra-ui/descendant@3.0.14": - version "3.0.14" - resolved "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.14.tgz" - integrity sha512-+Ahvp9H4HMpfScIv9w1vaecGz7qWAaK1YFHHolz/SIsGLaLGlbdp+5UNabQC7L6TUnzzJDQDxzwif78rTD7ang== +"@chakra-ui/descendant@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/descendant/-/descendant-3.1.0.tgz#f3b80ed13ffc4bf1d615b3ed5541bd0905375cca" + integrity sha512-VxCIAir08g5w27klLyi7PVo8BxhW4tgU/lxQyujkmi4zx7hT9ZdrcQLAted/dAa+aSIZ14S1oV0Q9lGjsAdxUQ== dependencies: - "@chakra-ui/react-context" "2.0.8" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-context" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" -"@chakra-ui/dom-utils@2.0.6": - version "2.0.6" - resolved "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.6.tgz" - integrity sha512-PVtDkPrDD5b8aoL6Atg7SLjkwhWb7BwMcLOF1L449L3nZN+DAO3nyAh6iUhZVJyunELj9d0r65CDlnMREyJZmA== +"@chakra-ui/dom-utils@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/dom-utils/-/dom-utils-2.1.0.tgz#d15df89e458ef19756db04c7cfd084eb552454f0" + integrity sha512-ZmF2qRa1QZ0CMLU8M1zCfmw29DmPNtfjR9iTo74U5FPr3i1aoAh7fbJ4qAlZ197Xw9eAW28tvzQuoVWeL5C7fQ== -"@chakra-ui/editable@3.0.0": - version "3.0.0" - resolved "https://registry.npmjs.org/@chakra-ui/editable/-/editable-3.0.0.tgz" - integrity sha512-q/7C/TM3iLaoQKlEiM8AY565i9NoaXtS6N6N4HWIEL5mZJPbMeHKxrCHUZlHxYuQJqFOGc09ZPD9fAFx1GkYwQ== +"@chakra-ui/editable@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/editable/-/editable-3.1.0.tgz#065783c2e3389c3bb9ab0582cb50d38e1dc00fa1" + integrity sha512-j2JLrUL9wgg4YA6jLlbU88370eCRyor7DZQD9lzpY95tSOXpTljeg3uF9eOmDnCs6fxp3zDWIfkgMm/ExhcGTg== dependencies: - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-callback-ref" "2.0.7" - "@chakra-ui/react-use-controllable-state" "2.0.8" - "@chakra-ui/react-use-focus-on-pointer-down" "2.0.6" - "@chakra-ui/react-use-merge-refs" "2.0.7" - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" - "@chakra-ui/react-use-update-effect" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" + "@chakra-ui/react-use-controllable-state" "2.1.0" + "@chakra-ui/react-use-focus-on-pointer-down" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" + "@chakra-ui/react-use-update-effect" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/event-utils@2.0.8": version "2.0.8" - resolved "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.8.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/event-utils/-/event-utils-2.0.8.tgz#e6439ba200825a2f15d8f1973d267d1c00a6d1b4" integrity sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw== -"@chakra-ui/focus-lock@2.0.16": - version "2.0.16" - resolved "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.16.tgz" - integrity sha512-UuAdGCPVrCa1lecoAvpOQD7JFT7a9RdmhKWhFt5ioIcekSLJcerdLHuuL3w0qz//8kd1/SOt7oP0aJqdAJQrCw== +"@chakra-ui/focus-lock@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/focus-lock/-/focus-lock-2.1.0.tgz#580e5450fe85356987b9a246abaff8333369c667" + integrity sha512-EmGx4PhWGjm4dpjRqM4Aa+rCWBxP+Rq8Uc/nAVnD4YVqkEhBkrPTpui2lnjsuxqNaZ24fIAZ10cF1hlpemte/w== dependencies: - "@chakra-ui/dom-utils" "2.0.6" - react-focus-lock "^2.9.2" + "@chakra-ui/dom-utils" "2.1.0" + react-focus-lock "^2.9.4" -"@chakra-ui/form-control@2.0.18": - version "2.0.18" - resolved "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.18.tgz" - integrity sha512-I0a0jG01IAtRPccOXSNugyRdUAe8Dy40ctqedZvznMweOXzbMCF1m+sHPLdWeWC/VI13VoAispdPY0/zHOdjsQ== +"@chakra-ui/form-control@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/form-control/-/form-control-2.2.0.tgz#69c771d6406ddac8ab357ae88446cc11827656a4" + integrity sha512-wehLC1t4fafCVJ2RvJQT2jyqsAwX7KymmiGqBu7nQoQz8ApTkGABWpo/QwDh3F/dBLrouHDoOvGmYTqft3Mirw== dependencies: - "@chakra-ui/icon" "3.0.16" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/icon" "3.2.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/hooks@2.2.0": - version "2.2.0" - resolved "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.2.0.tgz" - integrity sha512-GZE64mcr20w+3KbCUPqQJHHmiFnX5Rcp8jS3YntGA4D5X2qU85jka7QkjfBwv/iduZ5Ei0YpCMYGCpi91dhD1Q== +"@chakra-ui/hooks@2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/hooks/-/hooks-2.2.1.tgz#b86ce5eeaaab877ddcb11a50842d1227306ace28" + integrity sha512-RQbTnzl6b1tBjbDPf9zGRo9rf/pQMholsOudTxjy4i9GfTfz6kgp5ValGjQm2z7ng6Z31N1cnjZ1AlSzQ//ZfQ== dependencies: "@chakra-ui/react-utils" "2.0.12" "@chakra-ui/utils" "2.0.15" - compute-scroll-into-view "1.0.20" + compute-scroll-into-view "3.0.3" copy-to-clipboard "3.3.3" -"@chakra-ui/icon@3.0.16": - version "3.0.16" - resolved "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.16.tgz" - integrity sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg== +"@chakra-ui/icon@3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/icon/-/icon-3.2.0.tgz#92b9454aa0d561b4994bcd6a1b3bb1fdd5c67bef" + integrity sha512-xxjGLvlX2Ys4H0iHrI16t74rG9EBcpFvJ3Y3B7KMQTrnW34Kf7Da/UC8J67Gtx85mTHW020ml85SVPKORWNNKQ== dependencies: "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/image@2.0.16": - version "2.0.16" - resolved "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.16.tgz" - integrity sha512-iFypk1slgP3OK7VIPOtkB0UuiqVxNalgA59yoRM43xLIeZAEZpKngUVno4A2kFS61yKN0eIY4hXD3Xjm+25EJA== +"@chakra-ui/image@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/image/-/image-2.1.0.tgz#6c205f1ca148e3bf58345b0b5d4eb3d959eb9f87" + integrity sha512-bskumBYKLiLMySIWDGcz0+D9Th0jPvmX6xnRMs4o92tT3Od/bW26lahmV2a2Op2ItXeCmRMY+XxJH5Gy1i46VA== dependencies: - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/input@2.0.22": - version "2.0.22" - resolved "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.22.tgz" - integrity sha512-dCIC0/Q7mjZf17YqgoQsnXn0bus6vgriTRn8VmxOc+WcVl+KBSTBWujGrS5yu85WIFQ0aeqQvziDnDQybPqAbA== +"@chakra-ui/input@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/input/-/input-2.1.2.tgz#0cad49ec372f8f21f2f4f1db365f34b9a708ff9d" + integrity sha512-GiBbb3EqAA8Ph43yGa6Mc+kUPjh4Spmxp1Pkelr8qtudpc3p2PJOOebLpd90mcqw8UePPa+l6YhhPtp6o0irhw== dependencies: - "@chakra-ui/form-control" "2.0.18" + "@chakra-ui/form-control" "2.2.0" "@chakra-ui/object-utils" "2.1.0" "@chakra-ui/react-children-utils" "2.0.6" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/layout@2.1.19": - version "2.1.19" - resolved "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.19.tgz" - integrity sha512-g7xMVKbQFCODwKCkEF4/OmdPsr/fAavWUV+DGc1ZWVPdroUlg1FGTpK9bOTwkC/gnko7cMClILA+BIPR3Ylu9Q== +"@chakra-ui/layout@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/layout/-/layout-2.3.1.tgz#0601c5eb91555d24a7015a7c9d4e01fed2698557" + integrity sha512-nXuZ6WRbq0WdgnRgLw+QuxWAHuhDtVX8ElWqcTK+cSMFg/52eVP47czYBE5F35YhnoW2XBwfNoNgZ7+e8Z01Rg== dependencies: "@chakra-ui/breakpoint-utils" "2.0.8" - "@chakra-ui/icon" "3.0.16" + "@chakra-ui/icon" "3.2.0" "@chakra-ui/object-utils" "2.1.0" "@chakra-ui/react-children-utils" "2.0.6" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/lazy-utils@2.0.5": version "2.0.5" - resolved "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/lazy-utils/-/lazy-utils-2.0.5.tgz#363c3fa1d421362790b416ffa595acb835e1ae5b" integrity sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg== -"@chakra-ui/live-region@2.0.13": - version "2.0.13" - resolved "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.13.tgz" - integrity sha512-Ja+Slk6ZkxSA5oJzU2VuGU7TpZpbMb/4P4OUhIf2D30ctmIeXkxTWw1Bs1nGJAVtAPcGS5sKA+zb89i8g+0cTQ== +"@chakra-ui/live-region@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/live-region/-/live-region-2.1.0.tgz#02b4b1d997075f19a7a9a87187e08c72e82ef0dd" + integrity sha512-ZOxFXwtaLIsXjqnszYYrVuswBhnIHHP+XIgK1vC6DePKtyK590Wg+0J0slDwThUAd4MSSIUa/nNX84x1GMphWw== -"@chakra-ui/media-query@3.2.12": - version "3.2.12" - resolved "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.12.tgz" - integrity sha512-8pSLDf3oxxhFrhd40rs7vSeIBfvOmIKHA7DJlGUC/y+9irD24ZwgmCtFnn+y3gI47hTJsopbSX+wb8nr7XPswA== +"@chakra-ui/media-query@3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/media-query/-/media-query-3.3.0.tgz#40f9151dedb6a7af9df3be0474b59a799c92c619" + integrity sha512-IsTGgFLoICVoPRp9ykOgqmdMotJG0CnPsKvGQeSFOB/dZfIujdVb14TYxDU4+MURXry1MhJ7LzZhv+Ml7cr8/g== dependencies: "@chakra-ui/breakpoint-utils" "2.0.8" - "@chakra-ui/react-env" "3.0.0" + "@chakra-ui/react-env" "3.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/menu@2.1.14": - version "2.1.14" - resolved "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.1.14.tgz" - integrity sha512-z4YzlY/ub1hr4Ee2zCnZDs4t43048yLTf5GhEVYDO+SI92WlOfHlP9gYEzR+uj/CiRZglVFwUDKb3UmFtmKPyg== +"@chakra-ui/menu@2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/menu/-/menu-2.2.1.tgz#7d9810d435f6b40fa72ed867a33b88a1ef75073f" + integrity sha512-lJS7XEObzJxsOwWQh7yfG4H8FzFPRP5hVPN/CL+JzytEINCSBvsCDHrYPQGp7jzpCi8vnTqQQGQe0f8dwnXd2g== dependencies: - "@chakra-ui/clickable" "2.0.14" - "@chakra-ui/descendant" "3.0.14" + "@chakra-ui/clickable" "2.1.0" + "@chakra-ui/descendant" "3.1.0" "@chakra-ui/lazy-utils" "2.0.5" - "@chakra-ui/popper" "3.0.14" + "@chakra-ui/popper" "3.1.0" "@chakra-ui/react-children-utils" "2.0.6" - "@chakra-ui/react-context" "2.0.8" - "@chakra-ui/react-use-animation-state" "2.0.8" - "@chakra-ui/react-use-controllable-state" "2.0.8" - "@chakra-ui/react-use-disclosure" "2.0.8" - "@chakra-ui/react-use-focus-effect" "2.0.10" - "@chakra-ui/react-use-merge-refs" "2.0.7" - "@chakra-ui/react-use-outside-click" "2.1.0" - "@chakra-ui/react-use-update-effect" "2.0.7" + "@chakra-ui/react-context" "2.1.0" + "@chakra-ui/react-use-animation-state" "2.1.0" + "@chakra-ui/react-use-controllable-state" "2.1.0" + "@chakra-ui/react-use-disclosure" "2.1.0" + "@chakra-ui/react-use-focus-effect" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" + "@chakra-ui/react-use-outside-click" "2.2.0" + "@chakra-ui/react-use-update-effect" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/transition" "2.0.16" + "@chakra-ui/transition" "2.1.0" -"@chakra-ui/modal@2.2.11": - version "2.2.11" - resolved "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.2.11.tgz" - integrity sha512-2J0ZUV5tEzkPiawdkgPz6bmex7NXAde1VXooMwdvK+vuT8PV3U61yorTJOZVLdw7TjjI1Yo94mzsp6UwBud43Q== +"@chakra-ui/modal@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/modal/-/modal-2.3.1.tgz#524dc32b6b4f545b54ae531dbf6c74e1052ee794" + integrity sha512-TQv1ZaiJMZN+rR9DK0snx/OPwmtaGH1HbZtlYt4W4s6CzyK541fxLRTjIXfEzIGpvNW+b6VFuFjbcR78p4DEoQ== dependencies: - "@chakra-ui/close-button" "2.0.17" - "@chakra-ui/focus-lock" "2.0.16" - "@chakra-ui/portal" "2.0.16" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/close-button" "2.1.1" + "@chakra-ui/focus-lock" "2.1.0" + "@chakra-ui/portal" "2.1.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/transition" "2.0.16" - aria-hidden "^1.2.2" - react-remove-scroll "^2.5.5" + "@chakra-ui/transition" "2.1.0" + aria-hidden "^1.2.3" + react-remove-scroll "^2.5.6" -"@chakra-ui/number-input@2.0.19": - version "2.0.19" - resolved "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.19.tgz" - integrity sha512-HDaITvtMEqOauOrCPsARDxKD9PSHmhWywpcyCSOX0lMe4xx2aaGhU0QQFhsJsykj8Er6pytMv6t0KZksdDv3YA== +"@chakra-ui/number-input@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/number-input/-/number-input-2.1.2.tgz#dda9095fba6a4b89212332db02831b94120da163" + integrity sha512-pfOdX02sqUN0qC2ysuvgVDiws7xZ20XDIlcNhva55Jgm095xjm8eVdIBfNm3SFbSUNxyXvLTW/YQanX74tKmuA== dependencies: - "@chakra-ui/counter" "2.0.14" - "@chakra-ui/form-control" "2.0.18" - "@chakra-ui/icon" "3.0.16" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/counter" "2.1.0" + "@chakra-ui/form-control" "2.2.0" + "@chakra-ui/icon" "3.2.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-callback-ref" "2.0.7" - "@chakra-ui/react-use-event-listener" "2.0.7" - "@chakra-ui/react-use-interval" "2.0.5" - "@chakra-ui/react-use-merge-refs" "2.0.7" - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" - "@chakra-ui/react-use-update-effect" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" + "@chakra-ui/react-use-event-listener" "2.1.0" + "@chakra-ui/react-use-interval" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" + "@chakra-ui/react-use-update-effect" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/number-utils@2.0.7": version "2.0.7" - resolved "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.7.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/number-utils/-/number-utils-2.0.7.tgz#aaee979ca2fb1923a0373a91619473811315db11" integrity sha512-yOGxBjXNvLTBvQyhMDqGU0Oj26s91mbAlqKHiuw737AXHt0aPllOthVUqQMeaYLwLCjGMg0jtI7JReRzyi94Dg== "@chakra-ui/object-utils@2.1.0": version "2.1.0" - resolved "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/object-utils/-/object-utils-2.1.0.tgz#a4ecf9cea92f1de09f5531f53ffdc41e0b19b6c3" integrity sha512-tgIZOgLHaoti5PYGPTwK3t/cqtcycW0owaiOXoZOcpwwX/vlVb+H1jFsQyWiiwQVPt9RkoSLtxzXamx+aHH+bQ== -"@chakra-ui/pin-input@2.0.20": - version "2.0.20" - resolved "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.20.tgz" - integrity sha512-IHVmerrtHN8F+jRB3W1HnMir1S1TUCWhI7qDInxqPtoRffHt6mzZgLZ0izx8p1fD4HkW4c1d4/ZLEz9uH9bBRg== +"@chakra-ui/pin-input@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/pin-input/-/pin-input-2.1.0.tgz#61e6bbf909ec510634307b2861c4f1891a9f8d81" + integrity sha512-x4vBqLStDxJFMt+jdAHHS8jbh294O53CPQJoL4g228P513rHylV/uPscYUHrVJXRxsHfRztQO9k45jjTYaPRMw== dependencies: - "@chakra-ui/descendant" "3.0.14" + "@chakra-ui/descendant" "3.1.0" "@chakra-ui/react-children-utils" "2.0.6" - "@chakra-ui/react-context" "2.0.8" - "@chakra-ui/react-use-controllable-state" "2.0.8" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-context" "2.1.0" + "@chakra-ui/react-use-controllable-state" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/popover@2.1.11": - version "2.1.11" - resolved "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.1.11.tgz" - integrity sha512-ntFMKojU+ZIofwSw5IJ+Ur8pN5o+5kf/Fx5r5tCjFZd0DSkrEeJw9i00/UWJ6kYZb+zlpswxriv0FmxBlAF66w== +"@chakra-ui/popover@2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/popover/-/popover-2.2.1.tgz#89cfd29817abcd204da570073c0f2b4d8072c3a3" + integrity sha512-K+2ai2dD0ljvJnlrzesCDT9mNzLifE3noGKZ3QwLqd/K34Ym1W/0aL1ERSynrcG78NKoXS54SdEzkhCZ4Gn/Zg== dependencies: - "@chakra-ui/close-button" "2.0.17" + "@chakra-ui/close-button" "2.1.1" "@chakra-ui/lazy-utils" "2.0.5" - "@chakra-ui/popper" "3.0.14" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/popper" "3.1.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-animation-state" "2.0.8" - "@chakra-ui/react-use-disclosure" "2.0.8" - "@chakra-ui/react-use-focus-effect" "2.0.10" - "@chakra-ui/react-use-focus-on-pointer-down" "2.0.6" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-use-animation-state" "2.1.0" + "@chakra-ui/react-use-disclosure" "2.1.0" + "@chakra-ui/react-use-focus-effect" "2.1.0" + "@chakra-ui/react-use-focus-on-pointer-down" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/popper@3.0.14": - version "3.0.14" - resolved "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.14.tgz" - integrity sha512-RDMmmSfjsmHJbVn2agDyoJpTbQK33fxx//njwJdeyM0zTG/3/4xjI/Cxru3acJ2Y+1jFGmPqhO81stFjnbtfIw== +"@chakra-ui/popper@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/popper/-/popper-3.1.0.tgz#92a9180c6894763af3b22a6003f9a9d958fe2659" + integrity sha512-ciDdpdYbeFG7og6/6J8lkTFxsSvwTdMLFkpVylAF6VNC22jssiWfquj2eyD4rJnzkRFPvIWJq8hvbfhsm+AjSg== dependencies: "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@popperjs/core" "^2.9.3" -"@chakra-ui/portal@2.0.16": - version "2.0.16" - resolved "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.16.tgz" - integrity sha512-bVID0qbQ0l4xq38LdqAN4EKD4/uFkDnXzFwOlviC9sl0dNhzICDb1ltuH/Adl1d2HTMqyN60O3GO58eHy7plnQ== +"@chakra-ui/portal@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/portal/-/portal-2.1.0.tgz#9e7f57424d7041738b6563cac80134561080bd27" + integrity sha512-9q9KWf6SArEcIq1gGofNcFPSWEyl+MfJjEUg/un1SMlQjaROOh3zYr+6JAwvcORiX7tyHosnmWC3d3wI2aPSQg== dependencies: - "@chakra-ui/react-context" "2.0.8" - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" + "@chakra-ui/react-context" "2.1.0" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" -"@chakra-ui/progress@2.1.6": - version "2.1.6" - resolved "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.1.6.tgz" - integrity sha512-hHh5Ysv4z6bK+j2GJbi/FT9CVyto2PtNUNwBmr3oNMVsoOUMoRjczfXvvYqp0EHr9PCpxqrq7sRwgQXUzhbDSw== +"@chakra-ui/progress@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/progress/-/progress-2.2.0.tgz#67444ea9779631d7c8395b2c9c78e5634f994999" + integrity sha512-qUXuKbuhN60EzDD9mHR7B67D7p/ZqNS2Aze4Pbl1qGGZfulPW0PY8Rof32qDtttDQBkzQIzFGE8d9QpAemToIQ== dependencies: - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/react-context" "2.1.0" -"@chakra-ui/provider@2.2.4": - version "2.2.4" - resolved "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.2.4.tgz" - integrity sha512-vz/WMEWhwoITCAkennRNYCeQHsJ6YwB/UjVaAK+61jWY42J7uCsRZ+3nB5rDjQ4m+aqPfTUPof8KLJBrtYrJbw== +"@chakra-ui/provider@2.4.2": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/provider/-/provider-2.4.2.tgz#92cb10b6a7df0720e3fa62716dc7cd872ae3ea3d" + integrity sha512-w0Tef5ZCJK1mlJorcSjItCSbyvVuqpvyWdxZiVQmE6fvSJR83wZof42ux0+sfWD+I7rHSfj+f9nzhNaEWClysw== dependencies: - "@chakra-ui/css-reset" "2.1.1" - "@chakra-ui/portal" "2.0.16" - "@chakra-ui/react-env" "3.0.0" - "@chakra-ui/system" "2.5.7" + "@chakra-ui/css-reset" "2.3.0" + "@chakra-ui/portal" "2.1.0" + "@chakra-ui/react-env" "3.1.0" + "@chakra-ui/system" "2.6.2" "@chakra-ui/utils" "2.0.15" -"@chakra-ui/radio@2.0.22": - version "2.0.22" - resolved "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.22.tgz" - integrity sha512-GsQ5WAnLwivWl6gPk8P1x+tCcpVakCt5R5T0HumF7DGPXKdJbjS+RaFySrbETmyTJsKY4QrfXn+g8CWVrMjPjw== +"@chakra-ui/radio@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/radio/-/radio-2.1.2.tgz#66db19c61a2e628aaf5e727027f7c3b4006ea898" + integrity sha512-n10M46wJrMGbonaghvSRnZ9ToTv/q76Szz284gv4QUWvyljQACcGrXIONUnQ3BIwbOfkRqSk7Xl/JgZtVfll+w== dependencies: - "@chakra-ui/form-control" "2.0.18" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/form-control" "2.2.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" - "@zag-js/focus-visible" "0.2.2" + "@zag-js/focus-visible" "0.16.0" "@chakra-ui/react-children-utils@2.0.6": version "2.0.6" - resolved "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-children-utils/-/react-children-utils-2.0.6.tgz#6c480c6a60678fcb75cb7d57107c7a79e5179b92" integrity sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA== -"@chakra-ui/react-context@2.0.8": - version "2.0.8" - resolved "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.8.tgz" - integrity sha512-tRTKdn6lCTXM6WPjSokAAKCw2ioih7Eg8cNgaYRSwKBck8nkz9YqxgIIEj3dJD7MGtpl24S/SNI98iRWkRwR/A== +"@chakra-ui/react-context@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-context/-/react-context-2.1.0.tgz#4858be1d5ff1c8ac0a0ec088d93a3b7f1cbbff99" + integrity sha512-iahyStvzQ4AOwKwdPReLGfDesGG+vWJfEsn0X/NoGph/SkN+HXtv2sCfYFFR9k7bb+Kvc6YfpLlSuLvKMHi2+w== -"@chakra-ui/react-env@3.0.0": - version "3.0.0" - resolved "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-3.0.0.tgz" - integrity sha512-tfMRO2v508HQWAqSADFrwZgR9oU10qC97oV6zGbjHh9ALP0/IcFR+Bi71KRTveDTm85fMeAzZYGj57P3Dsipkw== +"@chakra-ui/react-env@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-env/-/react-env-3.1.0.tgz#7d3c1c05a501bb369524d9f3d38c9325eb16ab50" + integrity sha512-Vr96GV2LNBth3+IKzr/rq1IcnkXv+MLmwjQH6C8BRtn3sNskgDFD5vLkVXcEhagzZMCh8FR3V/bzZPojBOyNhw== dependencies: - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" "@chakra-ui/react-types@2.0.7": version "2.0.7" - resolved "https://registry.npmjs.org/@chakra-ui/react-types/-/react-types-2.0.7.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-types/-/react-types-2.0.7.tgz#799c166a44882b23059c8f510eac9bd5d0869ac4" integrity sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ== -"@chakra-ui/react-use-animation-state@2.0.8": - version "2.0.8" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.8.tgz" - integrity sha512-xv9zSF2Rd1mHWQ+m5DLBWeh4atF8qrNvsOs3MNrvxKYBS3f79N3pqcQGrWAEvirXWXfiCeje2VAkEggqFRIo+Q== +"@chakra-ui/react-use-animation-state@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.1.0.tgz#eab661fbafd96804fe867b0df0c27e78feefe6e2" + integrity sha512-CFZkQU3gmDBwhqy0vC1ryf90BVHxVN8cTLpSyCpdmExUEtSEInSCGMydj2fvn7QXsz/za8JNdO2xxgJwxpLMtg== dependencies: - "@chakra-ui/dom-utils" "2.0.6" - "@chakra-ui/react-use-event-listener" "2.0.7" + "@chakra-ui/dom-utils" "2.1.0" + "@chakra-ui/react-use-event-listener" "2.1.0" -"@chakra-ui/react-use-callback-ref@2.0.7": - version "2.0.7" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.7.tgz" - integrity sha512-YjT76nTpfHAK5NxplAlZsQwNju5KmQExnqsWNPFeOR6vvbC34+iPSTr+r91i1Hdy7gBSbevsOsd5Wm6RN3GuMw== +"@chakra-ui/react-use-callback-ref@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.1.0.tgz#a508085f4d9e7d84d4ceffdf5f41745c9ac451d7" + integrity sha512-efnJrBtGDa4YaxDzDE90EnKD3Vkh5a1t3w7PhnRQmsphLy3g2UieasoKTlT2Hn118TwDjIv5ZjHJW6HbzXA9wQ== -"@chakra-ui/react-use-controllable-state@2.0.8": - version "2.0.8" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.8.tgz" - integrity sha512-F7rdCbLEmRjwwODqWZ3y+mKgSSHPcLQxeUygwk1BkZPXbKkJJKymOIjIynil2cbH7ku3hcSIWRvuhpCcfQWJ7Q== +"@chakra-ui/react-use-controllable-state@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.1.0.tgz#8fb6fa2f45d0c04173582ae8297e604ffdb9c7d9" + integrity sha512-QR/8fKNokxZUs4PfxjXuwl0fj/d71WPrmLJvEpCTkHjnzu7LnYvzoe2wB867IdooQJL0G1zBxl0Dq+6W1P3jpg== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" -"@chakra-ui/react-use-disclosure@2.0.8": - version "2.0.8" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.8.tgz" - integrity sha512-2ir/mHe1YND40e+FyLHnDsnDsBQPwzKDLzfe9GZri7y31oU83JSbHdlAXAhp3bpjohslwavtRCp+S/zRxfO9aQ== +"@chakra-ui/react-use-disclosure@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.1.0.tgz#90093eaf45db1bea7a6851dd0ce5cdb3eb66f90a" + integrity sha512-Ax4pmxA9LBGMyEZJhhUZobg9C0t3qFE4jVF1tGBsrLDcdBeLR9fwOogIPY9Hf0/wqSlAryAimICbr5hkpa5GSw== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" -"@chakra-ui/react-use-event-listener@2.0.7": - version "2.0.7" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.7.tgz" - integrity sha512-4wvpx4yudIO3B31pOrXuTHDErawmwiXnvAN7gLEOVREi16+YGNcFnRJ5X5nRrmB7j2MDUtsEDpRBFfw5Z9xQ5g== +"@chakra-ui/react-use-event-listener@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.1.0.tgz#afea2645bd9b38f754fc2b8eb858f9bb22385ded" + integrity sha512-U5greryDLS8ISP69DKDsYcsXRtAdnTQT+jjIlRYZ49K/XhUR/AqVZCK5BkR1spTDmO9H8SPhgeNKI70ODuDU/Q== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" -"@chakra-ui/react-use-focus-effect@2.0.10": - version "2.0.10" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.10.tgz" - integrity sha512-HswfpzjP8gCQM3/fbeR+8wrYqt0B3ChnVTqssnYXqp9Fa/5Y1Kx1ZADUWW93zMs5SF7hIEuNt8uKeh1/3HTcqQ== +"@chakra-ui/react-use-focus-effect@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.1.0.tgz#963fb790370dfadd51d12666ff2da60706f53a2a" + integrity sha512-xzVboNy7J64xveLcxTIJ3jv+lUJKDwRM7Szwn9tNzUIPD94O3qwjV7DDCUzN2490nSYDF4OBMt/wuDBtaR3kUQ== dependencies: - "@chakra-ui/dom-utils" "2.0.6" - "@chakra-ui/react-use-event-listener" "2.0.7" - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" - "@chakra-ui/react-use-update-effect" "2.0.7" + "@chakra-ui/dom-utils" "2.1.0" + "@chakra-ui/react-use-event-listener" "2.1.0" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" + "@chakra-ui/react-use-update-effect" "2.1.0" -"@chakra-ui/react-use-focus-on-pointer-down@2.0.6": - version "2.0.6" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.6.tgz" - integrity sha512-OigXiLRVySn3tyVqJ/rn57WGuukW8TQe8fJYiLwXbcNyAMuYYounvRxvCy2b53sQ7QIZamza0N0jhirbH5FNoQ== +"@chakra-ui/react-use-focus-on-pointer-down@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.1.0.tgz#2fbcf6bc7d06d97606747e231a908d5c387ca0cc" + integrity sha512-2jzrUZ+aiCG/cfanrolsnSMDykCAbv9EK/4iUyZno6BYb3vziucmvgKuoXbMPAzWNtwUwtuMhkby8rc61Ue+Lg== dependencies: - "@chakra-ui/react-use-event-listener" "2.0.7" + "@chakra-ui/react-use-event-listener" "2.1.0" -"@chakra-ui/react-use-interval@2.0.5": - version "2.0.5" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.5.tgz" - integrity sha512-1nbdwMi2K87V6p5f5AseOKif2CkldLaJlq1TOqaPRwb7v3aU9rltBtYdf+fIyuHSToNJUV6wd9budCFdLCl3Fg== +"@chakra-ui/react-use-interval@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-interval/-/react-use-interval-2.1.0.tgz#2602c097b3ab74b6644812e4f5efaad621218d98" + integrity sha512-8iWj+I/+A0J08pgEXP1J1flcvhLBHkk0ln7ZvGIyXiEyM6XagOTJpwNhiu+Bmk59t3HoV/VyvyJTa+44sEApuw== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" -"@chakra-ui/react-use-latest-ref@2.0.5": - version "2.0.5" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.0.5.tgz" - integrity sha512-3mIuFzMyIo3Ok/D8uhV9voVg7KkrYVO/pwVvNPJOHsDQqCA6DpYE4WDsrIx+fVcwad3Ta7SupexR5PoI+kq6QQ== - -"@chakra-ui/react-use-merge-refs@2.0.7": - version "2.0.7" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.7.tgz" - integrity sha512-zds4Uhsc+AMzdH8JDDkLVet9baUBgtOjPbhC5r3A0ZXjZvGhCztFAVE3aExYiVoMPoHLKbLcqvCWE6ioFKz1lw== +"@chakra-ui/react-use-latest-ref@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.1.0.tgz#d1e926130102566ece1d39f8a48ed125e0c8441a" + integrity sha512-m0kxuIYqoYB0va9Z2aW4xP/5b7BzlDeWwyXCH6QpT2PpW3/281L3hLCm1G0eOUcdVlayqrQqOeD6Mglq+5/xoQ== -"@chakra-ui/react-use-outside-click@2.1.0": +"@chakra-ui/react-use-merge-refs@2.1.0": version "2.1.0" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.1.0.tgz" - integrity sha512-JanCo4QtWvMl9ZZUpKJKV62RlMWDFdPCE0Q64a7eWTOQgWWcpyBW7TOYRunQTqrK30FqkYFJCOlAWOtn+6Rw7A== + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.1.0.tgz#c0c233527abdbea9a1348269c192012205762314" + integrity sha512-lERa6AWF1cjEtWSGjxWTaSMvneccnAVH4V4ozh8SYiN9fSPZLlSG3kNxfNzdFvMEhM7dnP60vynF7WjGdTgQbQ== + +"@chakra-ui/react-use-outside-click@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.2.0.tgz#5570b772a255f6f02b69e967127397c1b5fa3d3c" + integrity sha512-PNX+s/JEaMneijbgAM4iFL+f3m1ga9+6QK0E5Yh4s8KZJQ/bLwZzdhMz8J/+mL+XEXQ5J0N8ivZN28B82N1kNw== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" -"@chakra-ui/react-use-pan-event@2.0.9": - version "2.0.9" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.9.tgz" - integrity sha512-xu35QXkiyrgsHUOnctl+SwNcwf9Rl62uYE5y8soKOZdBm8E+FvZIt2hxUzK1EoekbJCMzEZ0Yv1ZQCssVkSLaQ== +"@chakra-ui/react-use-pan-event@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.1.0.tgz#51c21bc3c0e9e73d1faef5ea4f7e3c3d071a2758" + integrity sha512-xmL2qOHiXqfcj0q7ZK5s9UjTh4Gz0/gL9jcWPA6GVf+A0Od5imEDa/Vz+533yQKWiNSm1QGrIj0eJAokc7O4fg== dependencies: "@chakra-ui/event-utils" "2.0.8" - "@chakra-ui/react-use-latest-ref" "2.0.5" + "@chakra-ui/react-use-latest-ref" "2.1.0" framesync "6.1.2" -"@chakra-ui/react-use-previous@2.0.5": - version "2.0.5" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.5.tgz" - integrity sha512-BIZgjycPE4Xr+MkhKe0h67uHXzQQkBX/u5rYPd65iMGdX1bCkbE0oorZNfOHLKdTmnEb4oVsNvfN6Rfr+Mnbxw== +"@chakra-ui/react-use-previous@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-previous/-/react-use-previous-2.1.0.tgz#f6046e6f7398b1e8d7e66ff7ebb8d61c92a2d3d0" + integrity sha512-pjxGwue1hX8AFcmjZ2XfrQtIJgqbTF3Qs1Dy3d1krC77dEsiCUbQ9GzOBfDc8pfd60DrB5N2tg5JyHbypqh0Sg== -"@chakra-ui/react-use-safe-layout-effect@2.0.5": - version "2.0.5" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.5.tgz" - integrity sha512-MwAQBz3VxoeFLaesaSEN87reVNVbjcQBDex2WGexAg6hUB6n4gc1OWYH/iXp4tzp4kuggBNhEHkk9BMYXWfhJQ== +"@chakra-ui/react-use-safe-layout-effect@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.1.0.tgz#3a95f0ba6fd5d2d0aa14919160f2c825f13e686f" + integrity sha512-Knbrrx/bcPwVS1TorFdzrK/zWA8yuU/eaXDkNj24IrKoRlQrSBFarcgAEzlCHtzuhufP3OULPkELTzz91b0tCw== -"@chakra-ui/react-use-size@2.0.10": - version "2.0.10" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.10.tgz" - integrity sha512-fdIkH14GDnKQrtQfxX8N3gxbXRPXEl67Y3zeD9z4bKKcQUAYIMqs0MsPZY+FMpGQw8QqafM44nXfL038aIrC5w== +"@chakra-ui/react-use-size@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-size/-/react-use-size-2.1.0.tgz#fcf3070eaade8b4a84af8ce5341c4d5ca0a42bec" + integrity sha512-tbLqrQhbnqOjzTaMlYytp7wY8BW1JpL78iG7Ru1DlV4EWGiAmXFGvtnEt9HftU0NJ0aJyjgymkxfVGI55/1Z4A== dependencies: - "@zag-js/element-size" "0.3.2" + "@zag-js/element-size" "0.10.5" -"@chakra-ui/react-use-timeout@2.0.5": - version "2.0.5" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.5.tgz" - integrity sha512-QqmB+jVphh3h/CS60PieorpY7UqSPkrQCB7f7F+i9vwwIjtP8fxVHMmkb64K7VlzQiMPzv12nlID5dqkzlv0mw== +"@chakra-ui/react-use-timeout@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-timeout/-/react-use-timeout-2.1.0.tgz#24415f54267d7241a3c1d36a5cae4d472834cef7" + integrity sha512-cFN0sobKMM9hXUhyCofx3/Mjlzah6ADaEl/AXl5Y+GawB5rgedgAcu2ErAgarEkwvsKdP6c68CKjQ9dmTQlJxQ== dependencies: - "@chakra-ui/react-use-callback-ref" "2.0.7" + "@chakra-ui/react-use-callback-ref" "2.1.0" -"@chakra-ui/react-use-update-effect@2.0.7": - version "2.0.7" - resolved "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.7.tgz" - integrity sha512-vBM2bmmM83ZdDtasWv3PXPznpTUd+FvqBC8J8rxoRmvdMEfrxTiQRBJhiGHLpS9BPLLPQlosN6KdFU97csB6zg== +"@chakra-ui/react-use-update-effect@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.1.0.tgz#5c57cd1f50c2a6a8119e0f57f69510723d69884b" + integrity sha512-ND4Q23tETaR2Qd3zwCKYOOS1dfssojPLJMLvUtUbW5M9uW1ejYWgGUobeAiOVfSplownG8QYMmHTP86p/v0lbA== "@chakra-ui/react-utils@2.0.12": version "2.0.12" - resolved "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.12.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/react-utils/-/react-utils-2.0.12.tgz#d6b773b9a5b2e51dce61f51ac8a0e9a0f534f479" integrity sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw== dependencies: "@chakra-ui/utils" "2.0.15" "@chakra-ui/react@^2.6.1": - version "2.6.1" - resolved "https://registry.npmjs.org/@chakra-ui/react/-/react-2.6.1.tgz" - integrity sha512-Lt8c8pLPTz59xxdSuL2FlE7le9MXx4zgjr60UnEc3yjAMjXNTqUAoWHyT4Zn1elCGUPWOedS3rMvp4KTshT+5w== - dependencies: - "@chakra-ui/accordion" "2.1.11" - "@chakra-ui/alert" "2.1.0" - "@chakra-ui/avatar" "2.2.10" - "@chakra-ui/breadcrumb" "2.1.5" - "@chakra-ui/button" "2.0.18" - "@chakra-ui/card" "2.1.6" - "@chakra-ui/checkbox" "2.2.15" - "@chakra-ui/close-button" "2.0.17" - "@chakra-ui/control-box" "2.0.13" - "@chakra-ui/counter" "2.0.14" - "@chakra-ui/css-reset" "2.1.1" - "@chakra-ui/editable" "3.0.0" - "@chakra-ui/focus-lock" "2.0.16" - "@chakra-ui/form-control" "2.0.18" - "@chakra-ui/hooks" "2.2.0" - "@chakra-ui/icon" "3.0.16" - "@chakra-ui/image" "2.0.16" - "@chakra-ui/input" "2.0.22" - "@chakra-ui/layout" "2.1.19" - "@chakra-ui/live-region" "2.0.13" - "@chakra-ui/media-query" "3.2.12" - "@chakra-ui/menu" "2.1.14" - "@chakra-ui/modal" "2.2.11" - "@chakra-ui/number-input" "2.0.19" - "@chakra-ui/pin-input" "2.0.20" - "@chakra-ui/popover" "2.1.11" - "@chakra-ui/popper" "3.0.14" - "@chakra-ui/portal" "2.0.16" - "@chakra-ui/progress" "2.1.6" - "@chakra-ui/provider" "2.2.4" - "@chakra-ui/radio" "2.0.22" - "@chakra-ui/react-env" "3.0.0" - "@chakra-ui/select" "2.0.19" - "@chakra-ui/skeleton" "2.0.24" - "@chakra-ui/slider" "2.0.24" - "@chakra-ui/spinner" "2.0.13" - "@chakra-ui/stat" "2.0.18" - "@chakra-ui/stepper" "2.2.0" - "@chakra-ui/styled-system" "2.9.0" - "@chakra-ui/switch" "2.0.27" - "@chakra-ui/system" "2.5.7" - "@chakra-ui/table" "2.0.17" - "@chakra-ui/tabs" "2.1.9" - "@chakra-ui/tag" "3.0.0" - "@chakra-ui/textarea" "2.0.19" - "@chakra-ui/theme" "3.1.1" - "@chakra-ui/theme-utils" "2.0.17" - "@chakra-ui/toast" "6.1.3" - "@chakra-ui/tooltip" "2.2.8" - "@chakra-ui/transition" "2.0.16" + version "2.8.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/react/-/react-2.8.2.tgz#94d692fb35e4447748c5bfd73d8d38a746193c7d" + integrity sha512-Hn0moyxxyCDKuR9ywYpqgX8dvjqwu9ArwpIb9wHNYjnODETjLwazgNIliCVBRcJvysGRiV51U2/JtJVrpeCjUQ== + dependencies: + "@chakra-ui/accordion" "2.3.1" + "@chakra-ui/alert" "2.2.2" + "@chakra-ui/avatar" "2.3.0" + "@chakra-ui/breadcrumb" "2.2.0" + "@chakra-ui/button" "2.1.0" + "@chakra-ui/card" "2.2.0" + "@chakra-ui/checkbox" "2.3.2" + "@chakra-ui/close-button" "2.1.1" + "@chakra-ui/control-box" "2.1.0" + "@chakra-ui/counter" "2.1.0" + "@chakra-ui/css-reset" "2.3.0" + "@chakra-ui/editable" "3.1.0" + "@chakra-ui/focus-lock" "2.1.0" + "@chakra-ui/form-control" "2.2.0" + "@chakra-ui/hooks" "2.2.1" + "@chakra-ui/icon" "3.2.0" + "@chakra-ui/image" "2.1.0" + "@chakra-ui/input" "2.1.2" + "@chakra-ui/layout" "2.3.1" + "@chakra-ui/live-region" "2.1.0" + "@chakra-ui/media-query" "3.3.0" + "@chakra-ui/menu" "2.2.1" + "@chakra-ui/modal" "2.3.1" + "@chakra-ui/number-input" "2.1.2" + "@chakra-ui/pin-input" "2.1.0" + "@chakra-ui/popover" "2.2.1" + "@chakra-ui/popper" "3.1.0" + "@chakra-ui/portal" "2.1.0" + "@chakra-ui/progress" "2.2.0" + "@chakra-ui/provider" "2.4.2" + "@chakra-ui/radio" "2.1.2" + "@chakra-ui/react-env" "3.1.0" + "@chakra-ui/select" "2.1.2" + "@chakra-ui/skeleton" "2.1.0" + "@chakra-ui/skip-nav" "2.1.0" + "@chakra-ui/slider" "2.1.0" + "@chakra-ui/spinner" "2.1.0" + "@chakra-ui/stat" "2.1.1" + "@chakra-ui/stepper" "2.3.1" + "@chakra-ui/styled-system" "2.9.2" + "@chakra-ui/switch" "2.1.2" + "@chakra-ui/system" "2.6.2" + "@chakra-ui/table" "2.1.0" + "@chakra-ui/tabs" "3.0.0" + "@chakra-ui/tag" "3.1.1" + "@chakra-ui/textarea" "2.1.2" + "@chakra-ui/theme" "3.3.1" + "@chakra-ui/theme-utils" "2.0.21" + "@chakra-ui/toast" "7.0.2" + "@chakra-ui/tooltip" "2.3.1" + "@chakra-ui/transition" "2.1.0" "@chakra-ui/utils" "2.0.15" - "@chakra-ui/visually-hidden" "2.0.15" + "@chakra-ui/visually-hidden" "2.2.0" -"@chakra-ui/select@2.0.19": - version "2.0.19" - resolved "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.19.tgz" - integrity sha512-eAlFh+JhwtJ17OrB6fO6gEAGOMH18ERNrXLqWbYLrs674Le7xuREgtuAYDoxUzvYXYYTTdOJtVbcHGriI3o6rA== +"@chakra-ui/select@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/select/-/select-2.1.2.tgz#f57d6cec0559373c32094fd4a5abd32855829264" + integrity sha512-ZwCb7LqKCVLJhru3DXvKXpZ7Pbu1TDZ7N0PdQ0Zj1oyVLJyrpef1u9HR5u0amOpqcH++Ugt0f5JSmirjNlctjA== dependencies: - "@chakra-ui/form-control" "2.0.18" + "@chakra-ui/form-control" "2.2.0" "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/shared-utils@2.0.5": version "2.0.5" - resolved "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz#cb2b49705e113853647f1822142619570feba081" integrity sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q== -"@chakra-ui/skeleton@2.0.24": - version "2.0.24" - resolved "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.24.tgz" - integrity sha512-1jXtVKcl/jpbrJlc/TyMsFyI651GTXY5ma30kWyTXoby2E+cxbV6OR8GB/NMZdGxbQBax8/VdtYVjI0n+OBqWA== +"@chakra-ui/skeleton@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/skeleton/-/skeleton-2.1.0.tgz#e3b25dd3afa330029d6d63be0f7cb8d44ad25531" + integrity sha512-JNRuMPpdZGd6zFVKjVQ0iusu3tXAdI29n4ZENYwAJEMf/fN0l12sVeirOxkJ7oEL0yOx2AgEYFSKdbcAgfUsAQ== dependencies: - "@chakra-ui/media-query" "3.2.12" - "@chakra-ui/react-use-previous" "2.0.5" + "@chakra-ui/media-query" "3.3.0" + "@chakra-ui/react-use-previous" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/slider@2.0.24": - version "2.0.24" - resolved "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.24.tgz" - integrity sha512-o3hOaIiTzPMG8yf+HYWbrTmhxABicDViVOvOajRSXDodbZSCk1rZy1nmUeahjVtfVUB1IyJoNcXdn76IqJmhdg== +"@chakra-ui/skip-nav@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/skip-nav/-/skip-nav-2.1.0.tgz#cac27eecc6eded1e83c8f0cf7445d727739cb325" + integrity sha512-Hk+FG+vadBSH0/7hwp9LJnLjkO0RPGnx7gBJWI4/SpoJf3e4tZlWYtwGj0toYY4aGKl93jVghuwGbDBEMoHDug== + +"@chakra-ui/slider@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/slider/-/slider-2.1.0.tgz#1caeed18761ba2a390777418cc9389ba25e39bce" + integrity sha512-lUOBcLMCnFZiA/s2NONXhELJh6sY5WtbRykPtclGfynqqOo47lwWJx+VP7xaeuhDOPcWSSecWc9Y1BfPOCz9cQ== dependencies: "@chakra-ui/number-utils" "2.0.7" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-callback-ref" "2.0.7" - "@chakra-ui/react-use-controllable-state" "2.0.8" - "@chakra-ui/react-use-latest-ref" "2.0.5" - "@chakra-ui/react-use-merge-refs" "2.0.7" - "@chakra-ui/react-use-pan-event" "2.0.9" - "@chakra-ui/react-use-size" "2.0.10" - "@chakra-ui/react-use-update-effect" "2.0.7" - -"@chakra-ui/spinner@2.0.13": - version "2.0.13" - resolved "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.13.tgz" - integrity sha512-T1/aSkVpUIuiYyrjfn1+LsQEG7Onbi1UE9ccS/evgf61Dzy4GgTXQUnDuWFSgpV58owqirqOu6jn/9eCwDlzlg== + "@chakra-ui/react-use-callback-ref" "2.1.0" + "@chakra-ui/react-use-controllable-state" "2.1.0" + "@chakra-ui/react-use-latest-ref" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" + "@chakra-ui/react-use-pan-event" "2.1.0" + "@chakra-ui/react-use-size" "2.1.0" + "@chakra-ui/react-use-update-effect" "2.1.0" + +"@chakra-ui/spinner@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/spinner/-/spinner-2.1.0.tgz#aa24a3d692c6ac90714e0f0f82c76c12c78c8e60" + integrity sha512-hczbnoXt+MMv/d3gE+hjQhmkzLiKuoTo42YhUG7Bs9OSv2lg1fZHW1fGNRFP3wTi6OIbD044U1P9HK+AOgFH3g== dependencies: "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/stat@2.0.18": - version "2.0.18" - resolved "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.18.tgz" - integrity sha512-wKyfBqhVlIs9bkSerUc6F9KJMw0yTIEKArW7dejWwzToCLPr47u+CtYO6jlJHV6lRvkhi4K4Qc6pyvtJxZ3VpA== +"@chakra-ui/stat@2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/stat/-/stat-2.1.1.tgz#a204ba915795345996a16c79794d84826d7dcc2d" + integrity sha512-LDn0d/LXQNbAn2KaR3F1zivsZCewY4Jsy1qShmfBMKwn6rI8yVlbvu6SiA3OpHS0FhxbsZxQI6HefEoIgtqY6Q== dependencies: - "@chakra-ui/icon" "3.0.16" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/icon" "3.2.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/stepper@2.2.0": - version "2.2.0" - resolved "https://registry.npmjs.org/@chakra-ui/stepper/-/stepper-2.2.0.tgz" - integrity sha512-8ZLxV39oghSVtOUGK8dX8Z6sWVSQiKVmsK4c3OQDa8y2TvxP0VtFD0Z5U1xJlOjQMryZRWhGj9JBc3iQLukuGg== +"@chakra-ui/stepper@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/stepper/-/stepper-2.3.1.tgz#a0a0b73e147f202ab4e51cae55dad45489cc89fd" + integrity sha512-ky77lZbW60zYkSXhYz7kbItUpAQfEdycT0Q4bkHLxfqbuiGMf8OmgZOQkOB9uM4v0zPwy2HXhe0vq4Dd0xa55Q== dependencies: - "@chakra-ui/icon" "3.0.16" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/icon" "3.2.0" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/styled-system@2.9.0": - version "2.9.0" - resolved "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.9.0.tgz" - integrity sha512-rToN30eOezrTZ5qBHmWqEwsYPenHtc3WU6ODAfMUwNnmCJQiu2erRGv8JwIjmRJnKSOEnNKccI2UXe2EwI6+JA== +"@chakra-ui/styled-system@2.9.2": + version "2.9.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/styled-system/-/styled-system-2.9.2.tgz#898ab63da560a4a014f7b05fa7767e8c76da6d2f" + integrity sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg== dependencies: "@chakra-ui/shared-utils" "2.0.5" - csstype "^3.0.11" + csstype "^3.1.2" lodash.mergewith "4.6.2" -"@chakra-ui/switch@2.0.27": - version "2.0.27" - resolved "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.27.tgz" - integrity sha512-z76y2fxwMlvRBrC5W8xsZvo3gP+zAEbT3Nqy5P8uh/IPd5OvDsGeac90t5cgnQTyxMOpznUNNK+1eUZqtLxWnQ== +"@chakra-ui/switch@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/switch/-/switch-2.1.2.tgz#f7c6878d8126bfac8fa3b939079f1017c21b7479" + integrity sha512-pgmi/CC+E1v31FcnQhsSGjJnOE2OcND4cKPyTE+0F+bmGm48Q/b5UmKD9Y+CmZsrt/7V3h8KNczowupfuBfIHA== dependencies: - "@chakra-ui/checkbox" "2.2.15" + "@chakra-ui/checkbox" "2.3.2" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/system@2.5.7": - version "2.5.7" - resolved "https://registry.npmjs.org/@chakra-ui/system/-/system-2.5.7.tgz" - integrity sha512-yB6en7YdJPxKvKY2jJROVwkBE2CLFmHS4ZDx27VdYs0Fa4kGiyDFhJAfnMtLBNDVsTy1NhUHL9aqR63u56QqFg== +"@chakra-ui/system@2.6.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/system/-/system-2.6.2.tgz#528ec955bd6a7f74da46470ee8225b1e2c80a78b" + integrity sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ== dependencies: - "@chakra-ui/color-mode" "2.1.12" + "@chakra-ui/color-mode" "2.2.0" "@chakra-ui/object-utils" "2.1.0" "@chakra-ui/react-utils" "2.0.12" - "@chakra-ui/styled-system" "2.9.0" - "@chakra-ui/theme-utils" "2.0.17" + "@chakra-ui/styled-system" "2.9.2" + "@chakra-ui/theme-utils" "2.0.21" "@chakra-ui/utils" "2.0.15" - react-fast-compare "3.2.1" + react-fast-compare "3.2.2" -"@chakra-ui/table@2.0.17": - version "2.0.17" - resolved "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.17.tgz" - integrity sha512-OScheTEp1LOYvTki2NFwnAYvac8siAhW9BI5RKm5f5ORL2gVJo4I72RUqE0aKe1oboxgm7CYt5afT5PS5cG61A== +"@chakra-ui/table@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/table/-/table-2.1.0.tgz#20dce14c5e4d70dc7c6c0e87cce9b05907ff8c50" + integrity sha512-o5OrjoHCh5uCLdiUb0Oc0vq9rIAeHSIRScc2ExTC9Qg/uVZl2ygLrjToCaKfaaKl1oQexIeAcZDKvPG8tVkHyQ== dependencies: - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/tabs@2.1.9": - version "2.1.9" - resolved "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.9.tgz" - integrity sha512-Yf8e0kRvaGM6jfkJum0aInQ0U3ZlCafmrYYni2lqjcTtThqu+Yosmo3iYlnullXxCw5MVznfrkb9ySvgQowuYg== +"@chakra-ui/tabs@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/tabs/-/tabs-3.0.0.tgz#854c06880af26158d7c72881c4b5e0453f6c485d" + integrity sha512-6Mlclp8L9lqXmsGWF5q5gmemZXOiOYuh0SGT/7PgJVNPz3LXREXlXg2an4MBUD8W5oTkduCX+3KTMCwRrVrDYw== dependencies: - "@chakra-ui/clickable" "2.0.14" - "@chakra-ui/descendant" "3.0.14" + "@chakra-ui/clickable" "2.1.0" + "@chakra-ui/descendant" "3.1.0" "@chakra-ui/lazy-utils" "2.0.5" "@chakra-ui/react-children-utils" "2.0.6" - "@chakra-ui/react-context" "2.0.8" - "@chakra-ui/react-use-controllable-state" "2.0.8" - "@chakra-ui/react-use-merge-refs" "2.0.7" - "@chakra-ui/react-use-safe-layout-effect" "2.0.5" + "@chakra-ui/react-context" "2.1.0" + "@chakra-ui/react-use-controllable-state" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" + "@chakra-ui/react-use-safe-layout-effect" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/tag@3.0.0": - version "3.0.0" - resolved "https://registry.npmjs.org/@chakra-ui/tag/-/tag-3.0.0.tgz" - integrity sha512-YWdMmw/1OWRwNkG9pX+wVtZio+B89odaPj6XeMn5nfNN8+jyhIEpouWv34+CO9G0m1lupJTxPSfgLAd7cqXZMA== +"@chakra-ui/tag@3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/tag/-/tag-3.1.1.tgz#d05284b6549a84d3a08e57eec57df3ad0eebd882" + integrity sha512-Bdel79Dv86Hnge2PKOU+t8H28nm/7Y3cKd4Kfk9k3lOpUh4+nkSGe58dhRzht59lEqa4N9waCgQiBdkydjvBXQ== dependencies: - "@chakra-ui/icon" "3.0.16" - "@chakra-ui/react-context" "2.0.8" + "@chakra-ui/icon" "3.2.0" + "@chakra-ui/react-context" "2.1.0" -"@chakra-ui/textarea@2.0.19": - version "2.0.19" - resolved "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.19.tgz" - integrity sha512-adJk+qVGsFeJDvfn56CcJKKse8k7oMGlODrmpnpTdF+xvlsiTM+1GfaJvgNSpHHuQFdz/A0z1uJtfGefk0G2ZA== +"@chakra-ui/textarea@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/textarea/-/textarea-2.1.2.tgz#30f8af0e233cec2dee79d527450c6586e7122eff" + integrity sha512-ip7tvklVCZUb2fOHDb23qPy/Fr2mzDOGdkrpbNi50hDCiV4hFX02jdQJdi3ydHZUyVgZVBKPOJ+lT9i7sKA2wA== dependencies: - "@chakra-ui/form-control" "2.0.18" + "@chakra-ui/form-control" "2.2.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/theme-tools@2.0.17": - version "2.0.17" - resolved "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.17.tgz" - integrity sha512-Auu38hnihlJZQcPok6itRDBbwof3TpXGYtDPnOvrq4Xp7jnab36HLt7KEXSDPXbtOk3ZqU99pvI1en5LbDrdjg== +"@chakra-ui/theme-tools@2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/theme-tools/-/theme-tools-2.1.2.tgz#913be05879cd816c546993ccb9ff7615f85ff69f" + integrity sha512-Qdj8ajF9kxY4gLrq7gA+Azp8CtFHGO9tWMN2wfF9aQNgG9AuMhPrUzMq9AMQ0MXiYcgNq/FD3eegB43nHVmXVA== dependencies: - "@chakra-ui/anatomy" "2.1.2" + "@chakra-ui/anatomy" "2.2.2" "@chakra-ui/shared-utils" "2.0.5" - color2k "^2.0.0" + color2k "^2.0.2" -"@chakra-ui/theme-utils@2.0.17": - version "2.0.17" - resolved "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.17.tgz" - integrity sha512-aUaVLFIU1Rs8m+5WVOUvqHKapOX8nSgUVGaeRWS4odxBM95dG4j15f4L88LEMw4D4+WWd0CSAS139OnRgj1rCw== +"@chakra-ui/theme-utils@2.0.21": + version "2.0.21" + resolved "https://registry.yarnpkg.com/@chakra-ui/theme-utils/-/theme-utils-2.0.21.tgz#da7ed541a5241a8ed0384eb14f37fa9b998382cf" + integrity sha512-FjH5LJbT794r0+VSCXB3lT4aubI24bLLRWB+CuRKHijRvsOg717bRdUN/N1fEmEpFnRVrbewttWh/OQs0EWpWw== dependencies: "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/styled-system" "2.9.0" - "@chakra-ui/theme" "3.1.1" + "@chakra-ui/styled-system" "2.9.2" + "@chakra-ui/theme" "3.3.1" lodash.mergewith "4.6.2" -"@chakra-ui/theme@3.1.1": - version "3.1.1" - resolved "https://registry.npmjs.org/@chakra-ui/theme/-/theme-3.1.1.tgz" - integrity sha512-VHcG0CPLd9tgvWnajpAGqrAYhx4HwgfK0E9VOrdwa/3bN+AgY/0EAAXzfe0Q0W2MBWzSgaYqZcQ5cDRpYbiYPA== +"@chakra-ui/theme@3.3.1": + version "3.3.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/theme/-/theme-3.3.1.tgz#75c6cd0b5c70c0aa955068274ee4780f299bd8a4" + integrity sha512-Hft/VaT8GYnItGCBbgWd75ICrIrIFrR7lVOhV/dQnqtfGqsVDlrztbSErvMkoPKt0UgAkd9/o44jmZ6X4U2nZQ== dependencies: - "@chakra-ui/anatomy" "2.1.2" + "@chakra-ui/anatomy" "2.2.2" "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/theme-tools" "2.0.17" - -"@chakra-ui/toast@6.1.3": - version "6.1.3" - resolved "https://registry.npmjs.org/@chakra-ui/toast/-/toast-6.1.3.tgz" - integrity sha512-dsg/Sdkuq+SCwdOeyzrnBO1ecDA7VKfLFjUtj9QBc/SFEN8r+FQrygy79TNo+QWr7zdjI8icbl8nsp59lpb8ag== - dependencies: - "@chakra-ui/alert" "2.1.0" - "@chakra-ui/close-button" "2.0.17" - "@chakra-ui/portal" "2.0.16" - "@chakra-ui/react-context" "2.0.8" - "@chakra-ui/react-use-timeout" "2.0.5" - "@chakra-ui/react-use-update-effect" "2.0.7" + "@chakra-ui/theme-tools" "2.1.2" + +"@chakra-ui/toast@7.0.2": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@chakra-ui/toast/-/toast-7.0.2.tgz#d1c396bbfced12e22b010899731fd8cc294d53ec" + integrity sha512-yvRP8jFKRs/YnkuE41BVTq9nB2v/KDRmje9u6dgDmE5+1bFt3bwjdf9gVbif4u5Ve7F7BGk5E093ARRVtvLvXA== + dependencies: + "@chakra-ui/alert" "2.2.2" + "@chakra-ui/close-button" "2.1.1" + "@chakra-ui/portal" "2.1.0" + "@chakra-ui/react-context" "2.1.0" + "@chakra-ui/react-use-timeout" "2.1.0" + "@chakra-ui/react-use-update-effect" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" - "@chakra-ui/styled-system" "2.9.0" - "@chakra-ui/theme" "3.1.1" + "@chakra-ui/styled-system" "2.9.2" + "@chakra-ui/theme" "3.3.1" -"@chakra-ui/tooltip@2.2.8": - version "2.2.8" - resolved "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.2.8.tgz" - integrity sha512-AqtrCkalADrqqd1SgII4n8F0dDABxqxL3e8uj3yC3HDzT3BU/0NSwSQRA2bp9eoJHk07ZMs9kyzvkkBLc0pr2A== +"@chakra-ui/tooltip@2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@chakra-ui/tooltip/-/tooltip-2.3.1.tgz#29fb8508a37bb6b20ab8dbb32bca6cd59b098796" + integrity sha512-Rh39GBn/bL4kZpuEMPPRwYNnccRCL+w9OqamWHIB3Qboxs6h8cOyXfIdGxjo72lvhu1QI/a4KFqkM3St+WfC0A== dependencies: - "@chakra-ui/popper" "3.0.14" - "@chakra-ui/portal" "2.0.16" + "@chakra-ui/dom-utils" "2.1.0" + "@chakra-ui/popper" "3.1.0" + "@chakra-ui/portal" "2.1.0" "@chakra-ui/react-types" "2.0.7" - "@chakra-ui/react-use-disclosure" "2.0.8" - "@chakra-ui/react-use-event-listener" "2.0.7" - "@chakra-ui/react-use-merge-refs" "2.0.7" + "@chakra-ui/react-use-disclosure" "2.1.0" + "@chakra-ui/react-use-event-listener" "2.1.0" + "@chakra-ui/react-use-merge-refs" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/transition@2.0.16": - version "2.0.16" - resolved "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.16.tgz" - integrity sha512-E+RkwlPc3H7P1crEXmXwDXMB2lqY2LLia2P5siQ4IEnRWIgZXlIw+8Em+NtHNgusel2N+9yuB0wT9SeZZeZ3CQ== +"@chakra-ui/transition@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/transition/-/transition-2.1.0.tgz#c8e95564f7ab356e78119780037bae5ad150c7b3" + integrity sha512-orkT6T/Dt+/+kVwJNy7zwJ+U2xAZ3EU7M3XCs45RBvUnZDr/u9vdmaM/3D/rOpmQJWgQBwKPJleUXrYWUagEDQ== dependencies: "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/utils@2.0.15": version "2.0.15" - resolved "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.15.tgz" + resolved "https://registry.yarnpkg.com/@chakra-ui/utils/-/utils-2.0.15.tgz#bd800b1cff30eb5a5e8c36fa039f49984b4c5e4a" integrity sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA== dependencies: "@types/lodash.mergewith" "4.6.7" @@ -852,45 +863,45 @@ framesync "6.1.2" lodash.mergewith "4.6.2" -"@chakra-ui/visually-hidden@2.0.15": - version "2.0.15" - resolved "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.15.tgz" - integrity sha512-WWULIiucYRBIewHKFA7BssQ2ABLHLVd9lrUo3N3SZgR0u4ZRDDVEUNOy+r+9ruDze8+36dGbN9wsN1IdELtdOw== +"@chakra-ui/visually-hidden@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@chakra-ui/visually-hidden/-/visually-hidden-2.2.0.tgz#9b0ecef8f01263ab808ba3bda7b36a0d91b4d5c1" + integrity sha512-KmKDg01SrQ7VbTD3+cPWf/UfpF5MSwm3v7MWi0n5t8HnnadT13MF0MJCDSXbBWnzLv1ZKJ6zlyAOeARWX+DpjQ== -"@dnd-kit/accessibility@^3.0.0": - version "3.0.1" - resolved "https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.0.1.tgz" - integrity sha512-HXRrwS9YUYQO9lFRc/49uO/VICbM+O+ZRpFDe9Pd1rwVv2PCNkRiTZRdxrDgng/UkvdC3Re9r2vwPpXXrWeFzg== +"@dnd-kit/accessibility@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@dnd-kit/accessibility/-/accessibility-3.1.0.tgz#1054e19be276b5f1154ced7947fc0cb5d99192e0" + integrity sha512-ea7IkhKvlJUv9iSHJOnxinBcoOI3ppGnnL+VDJ75O45Nss6HtZd8IdN8touXPDtASfeI2T2LImb8VOZcL47wjQ== dependencies: tslib "^2.0.0" "@dnd-kit/core@^6.0.8": - version "6.0.8" - resolved "https://registry.npmjs.org/@dnd-kit/core/-/core-6.0.8.tgz" - integrity sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA== + version "6.1.0" + resolved "https://registry.yarnpkg.com/@dnd-kit/core/-/core-6.1.0.tgz#e81a3d10d9eca5d3b01cbf054171273a3fe01def" + integrity sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg== dependencies: - "@dnd-kit/accessibility" "^3.0.0" - "@dnd-kit/utilities" "^3.2.1" + "@dnd-kit/accessibility" "^3.1.0" + "@dnd-kit/utilities" "^3.2.2" tslib "^2.0.0" "@dnd-kit/sortable@^7.0.2": version "7.0.2" - resolved "https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-7.0.2.tgz" + resolved "https://registry.yarnpkg.com/@dnd-kit/sortable/-/sortable-7.0.2.tgz#791d550872457f3f3c843e00d159b640f982011c" integrity sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA== dependencies: "@dnd-kit/utilities" "^3.2.0" tslib "^2.0.0" -"@dnd-kit/utilities@^3.2.0", "@dnd-kit/utilities@^3.2.1": - version "3.2.1" - resolved "https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.1.tgz" - integrity sha512-OOXqISfvBw/1REtkSK2N3Fi2EQiLMlWUlqnOK/UpOISqBZPWpE6TqL+jcPtMOkE8TqYGiURvRdPSI9hltNUjEA== +"@dnd-kit/utilities@^3.2.0", "@dnd-kit/utilities@^3.2.1", "@dnd-kit/utilities@^3.2.2": + version "3.2.2" + resolved "https://registry.yarnpkg.com/@dnd-kit/utilities/-/utilities-3.2.2.tgz#5a32b6af356dc5f74d61b37d6f7129a4040ced7b" + integrity sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg== dependencies: tslib "^2.0.0" -"@emotion/babel-plugin@^11.10.6", "@emotion/babel-plugin@^11.11.0": +"@emotion/babel-plugin@^11.11.0": version "11.11.0" - resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz" + resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c" integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ== dependencies: "@babel/helper-module-imports" "^7.16.7" @@ -905,64 +916,64 @@ source-map "^0.5.7" stylis "4.2.0" -"@emotion/cache@^11.10.5": - version "11.10.5" - resolved "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz" - integrity sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA== +"@emotion/cache@^11.11.0": + version "11.11.0" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff" + integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ== dependencies: - "@emotion/memoize" "^0.8.0" - "@emotion/sheet" "^1.2.1" - "@emotion/utils" "^1.2.0" - "@emotion/weak-memoize" "^0.3.0" - stylis "4.1.3" + "@emotion/memoize" "^0.8.1" + "@emotion/sheet" "^1.2.2" + "@emotion/utils" "^1.2.1" + "@emotion/weak-memoize" "^0.3.1" + stylis "4.2.0" "@emotion/hash@^0.9.1": version "0.9.1" - resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43" integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== "@emotion/is-prop-valid@^0.8.2": version "0.8.8" - resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== dependencies: "@emotion/memoize" "0.7.4" "@emotion/is-prop-valid@^1.2.1": version "1.2.1" - resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz#23116cf1ed18bfeac910ec6436561ecb1a3885cc" integrity sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw== dependencies: "@emotion/memoize" "^0.8.1" "@emotion/memoize@0.7.4": version "0.7.4" - resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== -"@emotion/memoize@^0.8.0", "@emotion/memoize@^0.8.1": +"@emotion/memoize@^0.8.1": version "0.8.1" - resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== "@emotion/react@^11.10.6": - version "11.10.6" - resolved "https://registry.npmjs.org/@emotion/react/-/react-11.10.6.tgz" - integrity sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw== + version "11.11.3" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.3.tgz#96b855dc40a2a55f52a72f518a41db4f69c31a25" + integrity sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA== dependencies: "@babel/runtime" "^7.18.3" - "@emotion/babel-plugin" "^11.10.6" - "@emotion/cache" "^11.10.5" - "@emotion/serialize" "^1.1.1" - "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" - "@emotion/utils" "^1.2.0" - "@emotion/weak-memoize" "^0.3.0" + "@emotion/babel-plugin" "^11.11.0" + "@emotion/cache" "^11.11.0" + "@emotion/serialize" "^1.1.3" + "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1" + "@emotion/utils" "^1.2.1" + "@emotion/weak-memoize" "^0.3.1" hoist-non-react-statics "^3.3.1" -"@emotion/serialize@^1.1.1", "@emotion/serialize@^1.1.2": - version "1.1.2" - resolved "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz" - integrity sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA== +"@emotion/serialize@^1.1.2", "@emotion/serialize@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.3.tgz#84b77bfcfe3b7bb47d326602f640ccfcacd5ffb0" + integrity sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA== dependencies: "@emotion/hash" "^0.9.1" "@emotion/memoize" "^0.8.1" @@ -971,23 +982,23 @@ csstype "^3.0.2" "@emotion/server@^11.10.0": - version "11.10.0" - resolved "https://registry.npmjs.org/@emotion/server/-/server-11.10.0.tgz" - integrity sha512-MTvJ21JPo9aS02GdjFW4nhdwOi2tNNpMmAM/YED0pkxzjDNi5WbiTwXqaCnvLc2Lr8NFtjhT0az1vTJyLIHYcw== + version "11.11.0" + resolved "https://registry.yarnpkg.com/@emotion/server/-/server-11.11.0.tgz#35537176a2a5ed8aed7801f254828e636ec3bd6e" + integrity sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA== dependencies: - "@emotion/utils" "^1.2.0" + "@emotion/utils" "^1.2.1" html-tokenize "^2.0.0" multipipe "^1.0.2" through "^2.3.8" -"@emotion/sheet@^1.2.1": - version "1.2.1" - resolved "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz" - integrity sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA== +"@emotion/sheet@^1.2.2": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec" + integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== "@emotion/styled@^11.11.0": version "11.11.0" - resolved "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.11.0.tgz#26b75e1b5a1b7a629d7c0a8b708fbf5a9cdce346" integrity sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng== dependencies: "@babel/runtime" "^7.18.3" @@ -999,32 +1010,44 @@ "@emotion/unitless@^0.8.1": version "0.8.1" - resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3" integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ== -"@emotion/use-insertion-effect-with-fallbacks@^1.0.0", "@emotion/use-insertion-effect-with-fallbacks@^1.0.1": +"@emotion/use-insertion-effect-with-fallbacks@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== -"@emotion/utils@^1.2.0", "@emotion/utils@^1.2.1": +"@emotion/utils@^1.2.1": version "1.2.1" - resolved "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4" integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg== -"@emotion/weak-memoize@^0.3.0": - version "0.3.0" - resolved "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz" - integrity sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg== +"@emotion/weak-memoize@^0.3.1": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6" + integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww== -"@eslint/eslintrc@^1.4.1": - version "1.4.1" - resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz" - integrity sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA== +"@eslint-community/eslint-utils@^4.2.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.6.1": + version "4.10.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" + integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== + +"@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.4.0" + espree "^9.6.0" globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" @@ -1032,198 +1055,230 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@floating-ui/core@^1.2.2": - version "1.2.2" - resolved "https://registry.npmjs.org/@floating-ui/core/-/core-1.2.2.tgz" - integrity sha512-FaO9KVLFnxknZaGWGmNtjD2CVFuc0u4yeGEofoyXO2wgRA7fLtkngT6UB0vtWQWuhH3iMTZZ/Y89CMeyGfn8pA== +"@eslint/js@8.56.0": + version "8.56.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.56.0.tgz#ef20350fec605a7f7035a01764731b2de0f3782b" + integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A== + +"@floating-ui/core@^1.0.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.0.tgz#fa41b87812a16bf123122bf945946bae3fdf7fc1" + integrity sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g== + dependencies: + "@floating-ui/utils" "^0.2.1" "@floating-ui/dom@^1.2.1": - version "1.2.3" - resolved "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.2.3.tgz" - integrity sha512-lK9cZUrHSJLMVAdCvDqs6Ug8gr0wmqksYiaoj/bxj2gweRQkSuhg2/V6Jswz2KiQ0RAULbqw1oQDJIMpQ5GfGA== + version "1.6.3" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.3.tgz#954e46c1dd3ad48e49db9ada7218b0985cee75ef" + integrity sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw== dependencies: - "@floating-ui/core" "^1.2.2" + "@floating-ui/core" "^1.0.0" + "@floating-ui/utils" "^0.2.0" "@floating-ui/react-dom@^1.3.0": version "1.3.0" - resolved "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-1.3.0.tgz#4d35d416eb19811c2b0e9271100a6aa18c1579b3" integrity sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g== dependencies: "@floating-ui/dom" "^1.2.1" "@floating-ui/react@^0.19.1": version "0.19.2" - resolved "https://registry.npmjs.org/@floating-ui/react/-/react-0.19.2.tgz" + resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.19.2.tgz#c6e4d2097ed0dca665a7c042ddf9cdecc95e9412" integrity sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w== dependencies: "@floating-ui/react-dom" "^1.3.0" aria-hidden "^1.1.3" tabbable "^6.0.1" -"@humanwhocodes/config-array@^0.11.8": - version "0.11.8" - resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz" - integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== +"@floating-ui/utils@^0.2.0", "@floating-ui/utils@^0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.1.tgz#16308cea045f0fc777b6ff20a9f25474dd8293d2" + integrity sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q== + +"@humanwhocodes/config-array@^0.11.13": + version "0.11.14" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" + integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" + "@humanwhocodes/object-schema" "^2.0.2" + debug "^4.3.1" minimatch "^3.0.5" "@humanwhocodes/module-importer@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@humanwhocodes/object-schema@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917" + integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== + +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.22" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz#72a621e5de59f5f1ef792d0793a82ee20f645e4c" + integrity sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" "@mantine/carousel@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@mantine/carousel/-/carousel-6.0.0.tgz" - integrity sha512-rRK6ikSonMUk9i5mCqbhlTAG6r7obU7xnIaV0a1bBvwYMsgxRUVlDTO6od7cULXl5REa8xbSQkXsqjbP3fMgeg== + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/carousel/-/carousel-6.0.21.tgz#3e2a77e365014b314f90e8b474b350432c926640" + integrity sha512-cQAQ5RlVhSrYA8aez/euzs5nQKcGcwxVTS/gf46GEZ0gcDJXlymZPbc2OopH/WDczEaMWOF7wz8R9+uG1hYNCg== dependencies: - "@mantine/utils" "6.0.0" + "@mantine/utils" "6.0.21" "@mantine/core@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@mantine/core/-/core-6.0.0.tgz" - integrity sha512-ik2NUAAn9fYcqmOAluGtI9R73ijrr450dZDA+MezKq/dvpUU/Fhl9yXnGoCxxZ5XF6y4i6q07318rdrVturc9w== + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/core/-/core-6.0.21.tgz#6e3a1b8d0f6869518a644d5f5e3d55a5db7e1e51" + integrity sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg== dependencies: "@floating-ui/react" "^0.19.1" - "@mantine/styles" "6.0.0" - "@mantine/utils" "6.0.0" + "@mantine/styles" "6.0.21" + "@mantine/utils" "6.0.21" "@radix-ui/react-scroll-area" "1.0.2" react-remove-scroll "^2.5.5" react-textarea-autosize "8.3.4" "@mantine/hooks@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@mantine/hooks/-/hooks-6.0.0.tgz" - integrity sha512-boszkajLaA4qvd/ebDhqZBbMuUXlvJv8EM0jTaXz09IaGPachBKG5WKpXEcwWh2qmrUQL6pyhIbLMgPnvwS0QQ== + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/hooks/-/hooks-6.0.21.tgz#bc009d8380ad18455b90f3ddaf484de16a13da95" + integrity sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew== "@mantine/next@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@mantine/next/-/next-6.0.0.tgz" - integrity sha512-hJdTi0aLJdwnjavfyxuKnpkbpAhjr4xdGBm9wIWwjHC+wdav9x4oo3/6ZO1sK1+3ENWEgU7ahyYu0fws2d0AZQ== + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/next/-/next-6.0.21.tgz#22e3c9a7e43f3efaa865b3490961f700a85d66fe" + integrity sha512-McaVZZsmUol3yY92mSJSgcMQKFST97pVxNtI7Z52YocyuTjPPFXmqxF/TFj24A7noh1wzvRCPjfd9HX66sY+iQ== dependencies: - "@mantine/ssr" "6.0.0" - "@mantine/styles" "6.0.0" + "@mantine/ssr" "6.0.21" + "@mantine/styles" "6.0.21" -"@mantine/ssr@6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@mantine/ssr/-/ssr-6.0.0.tgz" - integrity sha512-/kGRSDWw6YZ23AwsZsLR5O7nQgaWPldc9U1G0NGvHWVB6dbkX8Jb08ByQAvem1Fjq7kxnuConuU5lUKMCiRAHA== +"@mantine/ssr@6.0.21": + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/ssr/-/ssr-6.0.21.tgz#3e6f347af944324b01f16d852ec5850f6555ce5f" + integrity sha512-TVPiz7VxbBntT42UFg4LCRqsv6HM5nvL5d2jBBbFcg9oztJ/5KVGhrtWbu2+kpq/uWWOpmE0sKDs3HQ/qr1PdQ== dependencies: - "@mantine/styles" "6.0.0" + "@mantine/styles" "6.0.21" html-react-parser "1.4.12" -"@mantine/styles@6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@mantine/styles/-/styles-6.0.0.tgz" - integrity sha512-TyqFvdKIhbhnGYBDEJ9QIPit4NzyzQ3ivDfdzeqzd/cJBxFPhxB0sEFU8RppXpXBUlbhLFhulYFEVl2pP6zaeg== +"@mantine/styles@6.0.21": + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/styles/-/styles-6.0.21.tgz#8ea097fc76cbb3ed55f5cfd719d2f910aff5031b" + integrity sha512-PVtL7XHUiD/B5/kZ/QvZOZZQQOj12QcRs3Q6nPoqaoPcOX5+S7bMZLMH0iLtcGq5OODYk0uxlvuJkOZGoPj8Mg== dependencies: clsx "1.1.1" csstype "3.0.9" -"@mantine/utils@6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@mantine/utils/-/utils-6.0.0.tgz" - integrity sha512-1AalSgzINKP4uv1DBTkJe/jh6yGwC2xaCQE4Atlr2bSHiLezYFMy/deGQ8XLFFv2AL0sjvewLW4ernlFujGMZg== +"@mantine/utils@6.0.21": + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/utils/-/utils-6.0.21.tgz#6185506e91cba3e308aaa8ea9ababc8e767995d6" + integrity sha512-33RVDRop5jiWFao3HKd3Yp7A9mEq4HAJxJPTuYm1NkdqX6aTKOQK7wT8v8itVodBp+sb4cJK6ZVdD1UurK/txQ== "@mongodb-js/saslprep@^1.1.0": - version "1.1.1" - resolved "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.1.tgz" - integrity sha512-t7c5K033joZZMspnHg/gWPE4kandgc2OxE74aYOtGKfgB9VPuVJPix0H6fhmm2erj5PBJ21mqcx34lpIGtUCsQ== + version "1.1.4" + resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.1.4.tgz#24ec1c4915a65f5c506bb88c081731450d91bb1c" + integrity sha512-8zJ8N1x51xo9hwPh6AWnKdLGEC5N3lDa6kms1YHmFBoRhTpJR6HG8wWk0td1MVCu9cD4YBrvjZEtd5Obw0Fbnw== dependencies: sparse-bitfield "^3.0.3" -"@next/env@13.2.3": - version "13.2.3" - resolved "https://registry.npmjs.org/@next/env/-/env-13.2.3.tgz" - integrity sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow== +"@next/env@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/env/-/env-14.1.0.tgz#43d92ebb53bc0ae43dcc64fb4d418f8f17d7a341" + integrity sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw== -"@next/eslint-plugin-next@13.1.6": - version "13.1.6" - resolved "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.6.tgz" - integrity sha512-o7cauUYsXjzSJkay8wKjpKJf2uLzlggCsGUkPu3lP09Pv97jYlekTC20KJrjQKmSv5DXV0R/uks2ZXhqjNkqAw== +"@next/eslint-plugin-next@13.5.6": + version "13.5.6" + resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.5.6.tgz#cf279b94ddc7de49af8e8957f0c3b7349bc489bf" + integrity sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg== dependencies: glob "7.1.7" -"@next/swc-android-arm-eabi@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.3.tgz#85eed560c87c7996558c868a117be9780778f192" - integrity sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw== +"@next/swc-darwin-arm64@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.0.tgz#70a57c87ab1ae5aa963a3ba0f4e59e18f4ecea39" + integrity sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ== + +"@next/swc-darwin-x64@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.0.tgz#0863a22feae1540e83c249384b539069fef054e9" + integrity sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g== + +"@next/swc-linux-arm64-gnu@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.0.tgz#893da533d3fce4aec7116fe772d4f9b95232423c" + integrity sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ== + +"@next/swc-linux-arm64-musl@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.0.tgz#d81ddcf95916310b8b0e4ad32b637406564244c0" + integrity sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g== -"@next/swc-android-arm64@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.2.3.tgz#8ac54ca9795a48afc4631b4823a4864bd5db0129" - integrity sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w== +"@next/swc-linux-x64-gnu@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.0.tgz#18967f100ec19938354332dcb0268393cbacf581" + integrity sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ== -"@next/swc-darwin-arm64@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.3.tgz#f674e3c65aec505b6d218a662ade3fe248ccdbda" - integrity sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w== +"@next/swc-linux-x64-musl@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.0.tgz#77077cd4ba8dda8f349dc7ceb6230e68ee3293cf" + integrity sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg== -"@next/swc-darwin-x64@13.2.3": - version "13.2.3" - resolved "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.3.tgz" - integrity sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw== +"@next/swc-win32-arm64-msvc@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.0.tgz#5f0b8cf955644104621e6d7cc923cad3a4c5365a" + integrity sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ== -"@next/swc-darwin-x64@^14.1.0": +"@next/swc-win32-ia32-msvc@14.1.0": version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.0.tgz#0863a22feae1540e83c249384b539069fef054e9" - integrity sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g== + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.0.tgz#21f4de1293ac5e5a168a412b139db5d3420a89d0" + integrity sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw== -"@next/swc-freebsd-x64@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.3.tgz#f7ac6ae4f7d706ff2431f33e40230a554c8c2cbc" - integrity sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g== - -"@next/swc-linux-arm-gnueabihf@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.3.tgz#84ad9e9679d55542a23b590ad9f2e1e9b2df62f7" - integrity sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA== - -"@next/swc-linux-arm64-gnu@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.3.tgz#56f9175bc632d647c60b9e8bedc0875edf92d8b7" - integrity sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA== - -"@next/swc-linux-arm64-musl@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.3.tgz#7d4cf00e8f1729a3de464da0624773f5d0d14888" - integrity sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g== - -"@next/swc-linux-x64-gnu@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.3.tgz#17de404910c4ebf7a1d366b19334d7e27e126ab0" - integrity sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ== - -"@next/swc-linux-x64-musl@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.3.tgz#07cb7b7f3a3a98034e2533f82638a9b099ba4ab1" - integrity sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA== - -"@next/swc-win32-arm64-msvc@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.3.tgz#b9ac98c954c71ec9de45d3497a8585096b873152" - integrity sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ== - -"@next/swc-win32-ia32-msvc@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.3.tgz#5ec48653a48fd664e940c69c96bba698fdae92eb" - integrity sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA== - -"@next/swc-win32-x64-msvc@13.2.3": - version "13.2.3" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.3.tgz#cd432f280beb8d8de5b7cd2501e9f502e9f3dd72" - integrity sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q== +"@next/swc-win32-x64-msvc@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.0.tgz#e561fb330466d41807123d932b365cf3d33ceba2" + integrity sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg== "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" @@ -1231,72 +1286,65 @@ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": version "1.2.8" - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@pkgr/utils@^2.3.1": - version "2.3.1" - resolved "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz" - integrity sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw== - dependencies: - cross-spawn "^7.0.3" - is-glob "^4.0.3" - open "^8.4.0" - picocolors "^1.0.0" - tiny-glob "^0.2.9" - tslib "^2.4.0" +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== "@popperjs/core@^2.6.0", "@popperjs/core@^2.9.3": - version "2.11.6" - resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz" - integrity sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw== + version "2.11.8" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" + integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== "@radix-ui/number@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/number/-/number-1.0.0.tgz#4c536161d0de750b3f5d55860fc3de46264f897b" integrity sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/primitive@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.0.tgz#e1d8ef30b10ea10e69c76e896f608d9276352253" integrity sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-compose-refs@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz#37595b1f16ec7f228d698590e78eeed18ff218ae" integrity sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-context@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.0.tgz#f38e30c5859a9fb5e9aa9a9da452ee3ed9e0aee0" integrity sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-direction@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.0.0.tgz#a2e0b552352459ecf96342c79949dd833c1e6e45" integrity sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-presence@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.0.0.tgz#814fe46df11f9a468808a6010e3f3ca7e0b2e84a" integrity sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w== dependencies: "@babel/runtime" "^7.13.10" @@ -1305,7 +1353,7 @@ "@radix-ui/react-primitive@1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz#c1ebcce283dd2f02e4fbefdaa49d1cb13dbc990a" integrity sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA== dependencies: "@babel/runtime" "^7.13.10" @@ -1313,7 +1361,7 @@ "@radix-ui/react-scroll-area@1.0.2": version "1.0.2" - resolved "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz#26c906d351b56835c0301126b24574c9e9c7b93b" integrity sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg== dependencies: "@babel/runtime" "^7.13.10" @@ -1329,7 +1377,7 @@ "@radix-ui/react-slot@1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.1.tgz#e7868c669c974d649070e9ecbec0b367ee0b4d81" integrity sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw== dependencies: "@babel/runtime" "^7.13.10" @@ -1337,107 +1385,123 @@ "@radix-ui/react-use-callback-ref@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz#9e7b8b6b4946fe3cbe8f748c82a2cce54e7b6a90" integrity sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-use-layout-effect@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz#2fc19e97223a81de64cd3ba1dc42ceffd82374dc" integrity sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ== dependencies: "@babel/runtime" "^7.13.10" -"@rushstack/eslint-patch@^1.1.3": - version "1.2.0" - resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz" - integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== +"@rushstack/eslint-patch@^1.3.3": + version "1.7.2" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz#2d4260033e199b3032a08b41348ac10de21c47e9" + integrity sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA== -"@swc/helpers@0.4.14": - version "0.4.14" - resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz" - integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== +"@swc/helpers@0.5.2": + version "0.5.2" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.2.tgz#85ea0c76450b61ad7d10a37050289eded783c27d" + integrity sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw== dependencies: tslib "^2.4.0" "@tootallnate/once@2": version "2.0.0" - resolved "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== "@types/hoist-non-react-statics@^3.3.0": - version "3.3.1" - resolved "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz" - integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA== + version "3.3.5" + resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz#dab7867ef789d87e2b4b0003c9d65c49cc44a494" + integrity sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg== dependencies: "@types/react" "*" hoist-non-react-statics "^3.3.0" "@types/json5@^0.0.29": version "0.0.29" - resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== "@types/lodash.mergewith@4.6.7": version "4.6.7" - resolved "https://registry.npmjs.org/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz" + resolved "https://registry.yarnpkg.com/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz#eaa65aa5872abdd282f271eae447b115b2757212" integrity sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A== dependencies: "@types/lodash" "*" "@types/lodash@*": - version "4.14.194" - resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz" - integrity sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g== + version "4.14.202" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.202.tgz#f09dbd2fb082d507178b2f2a5c7e74bd72ff98f8" + integrity sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ== -"@types/node@*", "@types/node@18.13.0": +"@types/node@*": + version "20.11.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.17.tgz#cdd642d0e62ef3a861f88ddbc2b61e32578a9292" + integrity sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw== + dependencies: + undici-types "~5.26.4" + +"@types/node@18.13.0": version "18.13.0" - resolved "https://registry.npmjs.org/@types/node/-/node-18.13.0.tgz" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.13.0.tgz#0400d1e6ce87e9d3032c19eb6c58205b0d3f7850" integrity sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg== "@types/p5@^1.7.3": - version "1.7.3" - resolved "https://registry.npmjs.org/@types/p5/-/p5-1.7.3.tgz" - integrity sha512-sYeos5Zbb5dx4jp5uDnZDtW3St6+9RtLCi7n2Rl6Ok2a5ofRIWDbXEigl++ppqgAyB20S8czlrrrmzLS1AwJPA== + version "1.7.6" + resolved "https://registry.yarnpkg.com/@types/p5/-/p5-1.7.6.tgz#f2ec2bb3cddaa40922afa5bb54b7903ce7e509ed" + integrity sha512-6pLTOo0V3N5jZb5nTwjiv3lPHLK3Z/TjbhQUj8CTWXocUk1Z/f6OHTp3Pcwi1BhWnf5gqKUcyEb1gP0KIJuQgw== "@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== "@types/prop-types@*": - version "15.7.5" - resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz" - integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + version "15.7.11" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.11.tgz#2596fb352ee96a1379c657734d4b913a613ad563" + integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== "@types/react-beautiful-dnd@^13.1.4": - version "13.1.4" - resolved "https://registry.npmjs.org/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.4.tgz" - integrity sha512-4bIBdzOr0aavN+88q3C7Pgz+xkb7tz3whORYrmSj77wfVEMfiWiooIwVWFR7KM2e+uGTe5BVrXqSfb0aHeflJA== + version "13.1.8" + resolved "https://registry.yarnpkg.com/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.8.tgz#f52d3ea07e1e19159d6c3c4a48c8da3d855e60b4" + integrity sha512-E3TyFsro9pQuK4r8S/OL6G99eq7p8v29sX0PM7oT8Z+PJfZvSQTx4zTQbUJ+QZXioAF0e7TGBEcA1XhYhCweyQ== dependencies: "@types/react" "*" "@types/react-dom@18.0.10": version "18.0.10" - resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.10.tgz" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.10.tgz#3b66dec56aa0f16a6cc26da9e9ca96c35c0b4352" integrity sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg== dependencies: "@types/react" "*" "@types/react-redux@^7.1.20": - version "7.1.25" - resolved "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.25.tgz" - integrity sha512-bAGh4e+w5D8dajd6InASVIyCo4pZLJ66oLb80F9OBLO1gKESbZcRCJpTT6uLXX+HAB57zw1WTdwJdAsewuTweg== + version "7.1.33" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.33.tgz#53c5564f03f1ded90904e3c90f77e4bd4dc20b15" + integrity sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg== dependencies: "@types/hoist-non-react-statics" "^3.3.0" "@types/react" "*" hoist-non-react-statics "^3.3.0" redux "^4.0.0" -"@types/react@*", "@types/react@18.0.27": +"@types/react@*": + version "18.2.55" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.55.tgz#38141821b7084404b5013742bc4ae08e44da7a67" + integrity sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/react@18.0.27": version "18.0.27" - resolved "https://registry.npmjs.org/@types/react/-/react-18.0.27.tgz" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.27.tgz#d9425abe187a00f8a5ec182b010d4fd9da703b71" integrity sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA== dependencies: "@types/prop-types" "*" @@ -1445,90 +1509,111 @@ csstype "^3.0.2" "@types/scheduler@*": - version "0.16.2" - resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" - integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + version "0.16.8" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.8.tgz#ce5ace04cfeabe7ef87c0091e50752e36707deff" + integrity sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A== "@types/webidl-conversions@*": - version "7.0.2" - resolved "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.2.tgz" - integrity sha512-uNv6b/uGRLlCVmelat2rA8bcVd3k/42mV2EmjhPh6JLkd35T5bgwR/t6xy7a9MWhd9sixIeBUzhBenvk3NO+DQ== + version "7.0.3" + resolved "https://registry.yarnpkg.com/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz#1306dbfa53768bcbcfc95a1c8cde367975581859" + integrity sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA== + +"@types/whatwg-url@^11.0.2": + version "11.0.4" + resolved "https://registry.yarnpkg.com/@types/whatwg-url/-/whatwg-url-11.0.4.tgz#ffed0dc8d89d91f62e3f368fcbda222a487c4f63" + integrity sha512-lXCmTWSHJvf0TRSO58nm978b8HJ/EdsSsEKLd3ODHFjo+3VGAyyTp4v50nWvwtzBxSMQrVOK7tcuN0zGPLICMw== + dependencies: + "@types/webidl-conversions" "*" "@types/whatwg-url@^8.2.1": version "8.2.2" - resolved "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz" + resolved "https://registry.yarnpkg.com/@types/whatwg-url/-/whatwg-url-8.2.2.tgz#749d5b3873e845897ada99be4448041d4cc39e63" integrity sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA== dependencies: "@types/node" "*" "@types/webidl-conversions" "*" -"@typescript-eslint/parser@^5.42.0": - version "5.51.0" - resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.51.0.tgz" - integrity sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA== +"@typescript-eslint/parser@^5.4.2 || ^6.0.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b" + integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ== dependencies: - "@typescript-eslint/scope-manager" "5.51.0" - "@typescript-eslint/types" "5.51.0" - "@typescript-eslint/typescript-estree" "5.51.0" + "@typescript-eslint/scope-manager" "6.21.0" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/typescript-estree" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" debug "^4.3.4" -"@typescript-eslint/scope-manager@5.51.0": - version "5.51.0" - resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz" - integrity sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ== +"@typescript-eslint/scope-manager@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1" + integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== dependencies: - "@typescript-eslint/types" "5.51.0" - "@typescript-eslint/visitor-keys" "5.51.0" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" -"@typescript-eslint/types@5.51.0": - version "5.51.0" - resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz" - integrity sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw== +"@typescript-eslint/types@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d" + integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== -"@typescript-eslint/typescript-estree@5.51.0": - version "5.51.0" - resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz" - integrity sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA== +"@typescript-eslint/typescript-estree@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46" + integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== dependencies: - "@typescript-eslint/types" "5.51.0" - "@typescript-eslint/visitor-keys" "5.51.0" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" + minimatch "9.0.3" + semver "^7.5.4" + ts-api-utils "^1.0.1" -"@typescript-eslint/visitor-keys@5.51.0": - version "5.51.0" - resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz" - integrity sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ== +"@typescript-eslint/visitor-keys@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47" + integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== dependencies: - "@typescript-eslint/types" "5.51.0" - eslint-visitor-keys "^3.3.0" + "@typescript-eslint/types" "6.21.0" + eslint-visitor-keys "^3.4.1" + +"@ungap/structured-clone@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== "@vygruppen/spor-accordion-react@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@vygruppen/spor-accordion-react/-/spor-accordion-react-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@vygruppen/spor-accordion-react/-/spor-accordion-react-1.0.1.tgz#8e335327d03086835d73635017780a9df4b176a5" integrity sha512-HakCVEknnh6w24QEp/maU01/m1XP6EZhN5Xq7ITw3EJWBNzfYZ2k4U/NM1+Xm+/NdLpsIMyuHWL8RS2o/PKW2g== -"@zag-js/element-size@0.3.2": - version "0.3.2" - resolved "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.3.2.tgz" - integrity sha512-bVvvigUGvAuj7PCkE5AbzvTJDTw5f3bg9nQdv+ErhVN8SfPPppLJEmmWdxqsRzrHXgx8ypJt/+Ty0kjtISVDsQ== +"@zag-js/dom-query@0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@zag-js/dom-query/-/dom-query-0.16.0.tgz#bca46bcd78f78c900064478646d95f9781ed098e" + integrity sha512-Oqhd6+biWyKnhKwFFuZrrf6lxBz2tX2pRQe6grUnYwO6HJ8BcbqZomy2lpOdr+3itlaUqx+Ywj5E5ZZDr/LBfQ== -"@zag-js/focus-visible@0.2.2": - version "0.2.2" - resolved "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-0.2.2.tgz" - integrity sha512-0j2gZq8HiZ51z4zNnSkF1iSkqlwRDvdH+son3wHdoz+7IUdMN/5Exd4TxMJ+gq2Of1DiXReYLL9qqh2PdQ4wgA== +"@zag-js/element-size@0.10.5": + version "0.10.5" + resolved "https://registry.yarnpkg.com/@zag-js/element-size/-/element-size-0.10.5.tgz#a24bad2eeb7e2c8709e32be5336e158e1a1a174f" + integrity sha512-uQre5IidULANvVkNOBQ1tfgwTQcGl4hliPSe69Fct1VfYb2Fd0jdAcGzqQgPhfrXFpR62MxLPB7erxJ/ngtL8w== + +"@zag-js/focus-visible@0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@zag-js/focus-visible/-/focus-visible-0.16.0.tgz#c9e53e3dbab0f2649d04a489bb379f5800f4f069" + integrity sha512-a7U/HSopvQbrDU4GLerpqiMcHKEkQkNPeDZJWz38cw/6Upunh41GjHetq5TB84hxyCaDzJ6q2nEdNoBQfC0FKA== + dependencies: + "@zag-js/dom-query" "0.16.0" abab@^2.0.6: version "2.0.6" - resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== acorn-globals@^7.0.0: version "7.0.1" - resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3" integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q== dependencies: acorn "^8.1.0" @@ -1536,48 +1621,29 @@ acorn-globals@^7.0.0: acorn-jsx@^5.3.2: version "5.3.2" - resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn-node@^1.8.2: - version "1.8.2" - resolved "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz" - integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== - dependencies: - acorn "^7.0.0" - acorn-walk "^7.0.0" - xtend "^4.0.2" - -acorn-walk@^7.0.0: - version "7.2.0" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - acorn-walk@^8.0.2: - version "8.2.0" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + version "8.3.2" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa" + integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A== -acorn@^7.0.0: - version "7.4.1" - resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.1.0, acorn@^8.8.0, acorn@^8.8.1: - version "8.8.2" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== +acorn@^8.1.0, acorn@^8.8.2, acorn@^8.9.0: + version "8.11.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== agent-base@6: version "6.0.2" - resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== dependencies: debug "4" -ajv@^6.10.0, ajv@^6.12.4: +ajv@^6.12.4: version "6.12.6" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" @@ -1587,26 +1653,41 @@ ajv@^6.10.0, ajv@^6.12.4: ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" +ansi-styles@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + anymatch@~3.1.2: version "3.1.3" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" @@ -1614,117 +1695,168 @@ anymatch@~3.1.2: arg@^5.0.2: version "5.0.2" - resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== argparse@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-hidden@^1.1.3, aria-hidden@^1.2.2: - version "1.2.2" - resolved "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.2.tgz" - integrity sha512-6y/ogyDTk/7YAe91T3E2PR1ALVKyM2QbTio5HwM+N1Q6CMlCKhvClyIjkckBswa0f2xJhjsfzIGa1yVSe1UMVA== +aria-hidden@^1.1.3, aria-hidden@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.3.tgz#14aeb7fb692bbb72d69bebfa47279c1fd725e954" + integrity sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ== dependencies: tslib "^2.0.0" -aria-query@^5.1.3: - version "5.1.3" - resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz" - integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== +aria-query@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== dependencies: - deep-equal "^2.0.5" + dequal "^2.0.3" -array-includes@^3.1.5, array-includes@^3.1.6: - version "3.1.6" - resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz" - integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== +array-buffer-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== + dependencies: + call-bind "^1.0.5" + is-array-buffer "^3.0.4" + +array-includes@^3.1.6, array-includes@^3.1.7: + version "3.1.7" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.7.tgz#8cd2e01b26f7a3086cbc87271593fe921c62abda" + integrity sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - get-intrinsic "^1.1.3" + define-properties "^1.2.0" + es-abstract "^1.22.1" + get-intrinsic "^1.2.1" is-string "^1.0.7" array-union@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -array.prototype.flat@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz" - integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== +array.prototype.filter@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz#423771edeb417ff5914111fff4277ea0624c0d0e" + integrity sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-array-method-boxes-properly "^1.0.0" + is-string "^1.0.7" -array.prototype.flatmap@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz" - integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== +array.prototype.findlastindex@^1.2.3: + version "1.2.4" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz#d1c50f0b3a9da191981ff8942a0aedd82794404f" + integrity sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.3.0" + es-shim-unscopables "^1.0.2" + +array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" + integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" es-shim-unscopables "^1.0.0" -array.prototype.tosorted@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz" - integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== +array.prototype.flatmap@^1.3.1, array.prototype.flatmap@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" + integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" es-shim-unscopables "^1.0.0" - get-intrinsic "^1.1.3" -ast-types-flow@^0.0.7: - version "0.0.7" - resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" - integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== +array.prototype.tosorted@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz#c8c89348337e51b8a3c48a9227f9ce93ceedcba8" + integrity sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.1.0" + es-shim-unscopables "^1.0.2" + +arraybuffer.prototype.slice@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== + dependencies: + array-buffer-byte-length "^1.0.1" + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.2.1" + get-intrinsic "^1.2.3" + is-array-buffer "^3.0.4" + is-shared-array-buffer "^1.0.2" + +ast-types-flow@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6" + integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ== + +asynciterator.prototype@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62" + integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== + dependencies: + has-symbols "^1.0.3" asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== autoprefixer@^10.4.13: - version "10.4.13" - resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz" - integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== + version "10.4.17" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.17.tgz#35cd5695cbbe82f536a50fa025d561b01fdec8be" + integrity sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg== dependencies: - browserslist "^4.21.4" - caniuse-lite "^1.0.30001426" - fraction.js "^4.2.0" + browserslist "^4.22.2" + caniuse-lite "^1.0.30001578" + fraction.js "^4.3.7" normalize-range "^0.1.2" picocolors "^1.0.0" postcss-value-parser "^4.2.0" -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== +available-typed-arrays@^1.0.5, available-typed-arrays@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz#ac812d8ce5a6b976d738e1c45f08d0b00bc7d725" + integrity sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg== -axe-core@^4.6.2: - version "4.6.3" - resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz" - integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg== +axe-core@=4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.0.tgz#34ba5a48a8b564f67e103f0aa5768d76e15bbbbf" + integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ== -axobject-query@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz" - integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== +axobject-query@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== dependencies: - deep-equal "^2.0.5" + dequal "^2.0.3" babel-plugin-macros@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== dependencies: "@babel/runtime" "^7.12.5" @@ -1733,87 +1865,111 @@ babel-plugin-macros@^3.1.0: balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== binary-extensions@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== -"blockly@>= 3.20200024.0", blockly@^9.2.1: - version "9.2.1" - resolved "https://registry.npmjs.org/blockly/-/blockly-9.2.1.tgz" - integrity sha512-8iy7keOE6A3lk+PIaDOIxuzv7eXUJqNKNNn1NXkd/246YSa8DkkfgaZ3eEskejkfm/uRgi8Y4HSU1dQRCfN+Hw== +"blockly@>= 3.20200024.0": + version "10.3.1" + resolved "https://registry.yarnpkg.com/blockly/-/blockly-10.3.1.tgz#7ea198a6499d474a0f231e89d0445511ec707612" + integrity sha512-EuHeCtcFJgTjHRktIL9I9S6/Dnd+AnjkSzMf79sQMrH47pZYSWGC2SZlgHIJve2JnY79D1W9ijMgjEyrgtbFnA== + dependencies: + jsdom "22.1.0" + +blockly@^9.2.1: + version "9.3.3" + resolved "https://registry.yarnpkg.com/blockly/-/blockly-9.3.3.tgz#5871b4fb1c709ef2639b17a0be0d63367a4f5915" + integrity sha512-L7LlrGXICEN+UaZsYq3Iz2/SF8uF2ks90ozwVXTkpueCpuo/Xt9eu4Skci6b1JUL7alMPPgt+AxIuq+2/p99Cg== dependencies: - jsdom "20.0.3" + jsdom "21.1.1" brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + braces@^3.0.2, braces@~3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" -browserslist@^4.21.4: - version "4.21.5" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== +browserslist@^4.22.2: + version "4.22.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.3.tgz#299d11b7e947a6b843981392721169e27d60c5a6" + integrity sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A== dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" + caniuse-lite "^1.0.30001580" + electron-to-chromium "^1.4.648" + node-releases "^2.0.14" + update-browserslist-db "^1.0.13" bson@^5.5.0: version "5.5.1" - resolved "https://registry.npmjs.org/bson/-/bson-5.5.1.tgz" + resolved "https://registry.yarnpkg.com/bson/-/bson-5.5.1.tgz#f5849d405711a7f23acdda9a442375df858e6833" integrity sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g== bson@^6.2.0: - version "6.2.0" - resolved "https://registry.npmjs.org/bson/-/bson-6.2.0.tgz" - integrity sha512-ID1cI+7bazPDyL9wYy9GaQ8gEEohWvcUl/Yf0dIdutJxnmInEEyCsb4awy/OiBfall7zBA179Pahi3vCdFze3Q== + version "6.3.0" + resolved "https://registry.yarnpkg.com/bson/-/bson-6.3.0.tgz#d47acba525ba7d7eb0e816c10538bce26a337fe0" + integrity sha512-balJfqwwTBddxfnidJZagCBPP/f48zj9Sdp3OJswREOgsJzHiQSaOIAtApSgDQFYgHqAvFkp53AFSqjMDZoTFw== buffer-from@~0.1.1: version "0.1.2" - resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-0.1.2.tgz#15f4b9bcef012044df31142c14333caf6e0260d0" integrity sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg== -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== +busboy@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + +call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" callsites@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase-css@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== -caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449: - version "1.0.30001451" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz" - integrity sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w== +caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001579, caniuse-lite@^1.0.30001580: + version "1.0.30001587" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz#a0bce920155fa56a1885a69c74e1163fc34b4881" + integrity sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA== -chalk@^2.0.0: +chalk@^2.4.2: version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -1822,16 +1978,16 @@ chalk@^2.0.0: chalk@^4.0.0: version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== dependencies: anymatch "~3.1.2" braces "~3.0.2" @@ -1844,86 +2000,91 @@ chokidar@^3.5.3: fsevents "~2.3.2" classnames@^2.2.3: - version "2.3.2" - resolved "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz" - integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw== + version "2.5.1" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b" + integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow== client-only@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== clsx@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== color-convert@^1.9.0: version "1.9.3" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== -color-name@^1.1.4, color-name@~1.1.4: +color-name@~1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -color2k@^2.0.0: - version "2.0.2" - resolved "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz" - integrity sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w== +color2k@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/color2k/-/color2k-2.0.3.tgz#a771244f6b6285541c82aa65ff0a0c624046e533" + integrity sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog== combined-stream@^1.0.8: version "1.0.8" - resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" -compute-scroll-into-view@1.0.20: - version "1.0.20" - resolved "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz" - integrity sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg== +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +compute-scroll-into-view@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz#c418900a5c56e2b04b885b54995df164535962b1" + integrity sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A== concat-map@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== convert-source-map@^1.5.0: version "1.9.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== copy-to-clipboard@3.3.3: version "3.3.3" - resolved "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz" + resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz#55ac43a1db8ae639a4bd99511c148cdd1b83a1b0" integrity sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA== dependencies: toggle-selection "^1.0.6" core-util-is@~1.0.0: version "1.0.3" - resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== cosmiconfig@^7.0.0: version "7.1.0" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== dependencies: "@types/parse-json" "^4.0.0" @@ -1932,9 +2093,9 @@ cosmiconfig@^7.0.0: path-type "^4.0.0" yaml "^1.10.0" -cross-spawn@^7.0.2, cross-spawn@^7.0.3: +cross-spawn@^7.0.0, cross-spawn@^7.0.2: version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== dependencies: path-key "^3.1.0" @@ -1943,175 +2104,138 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3: css-box-model@1.2.1, css-box-model@^1.2.0: version "1.2.1" - resolved "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/css-box-model/-/css-box-model-1.2.1.tgz#59951d3b81fd6b2074a62d49444415b0d2b4d7c1" integrity sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw== dependencies: tiny-invariant "^1.0.6" cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssom@^0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz" - integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== +cssstyle@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-3.0.0.tgz#17ca9c87d26eac764bb8cfd00583cff21ce0277a" + integrity sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg== dependencies: - cssom "~0.3.6" + rrweb-cssom "^0.6.0" csstype@3.0.9: version "3.0.9" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.9.tgz#6410af31b26bd0520933d02cbc64fce9ce3fbf0b" integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== -csstype@^3.0.11, csstype@^3.0.2: - version "3.1.1" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz" - integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== +csstype@^3.0.2, csstype@^3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== damerau-levenshtein@^1.0.8: version "1.0.8" - resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== -data-urls@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz" - integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ== +data-urls@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-4.0.0.tgz#333a454eca6f9a5b7b0f1013ff89074c3f522dd4" + integrity sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g== dependencies: abab "^2.0.6" whatwg-mimetype "^3.0.0" - whatwg-url "^11.0.0" + whatwg-url "^12.0.0" -debug@4, debug@4.x, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: +debug@4, debug@4.x, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: version "4.3.4" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" debug@^3.2.7: version "3.2.7" - resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: ms "^2.1.1" -decimal.js@^10.4.2: +decimal.js@^10.4.3: version "10.4.3" - resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz" + resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== -deep-equal@^2.0.5: - version "2.2.0" - resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz" - integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw== - dependencies: - call-bind "^1.0.2" - es-get-iterator "^1.1.2" - get-intrinsic "^1.1.3" - is-arguments "^1.1.1" - is-array-buffer "^3.0.1" - is-date-object "^1.0.5" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - isarray "^2.0.5" - object-is "^1.1.5" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" - side-channel "^1.0.4" - which-boxed-primitive "^1.0.2" - which-collection "^1.0.1" - which-typed-array "^1.1.9" - -deep-is@^0.1.3, deep-is@~0.1.3: +deep-is@^0.1.3: version "0.1.4" - resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -define-properties@^1.1.3, define-properties@^1.1.4: +define-data-property@^1.0.1, define-data-property@^1.1.2: version "1.1.4" - resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz" - integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" has-property-descriptors "^1.0.0" object-keys "^1.1.1" -defined@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz" - integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== - delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== +dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + detect-node-es@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493" integrity sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ== -detective@^5.2.1: - version "5.2.1" - resolved "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz" - integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== - dependencies: - acorn-node "^1.8.2" - defined "^1.0.0" - minimist "^1.2.6" - didyoumean@^1.2.2: version "1.2.2" - resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" dlv@^1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== doctrine@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== dependencies: esutils "^2.0.2" doctrine@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" dom-helpers@^5.0.1: version "5.2.1" - resolved "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== dependencies: "@babel/runtime" "^7.8.7" @@ -2119,7 +2243,7 @@ dom-helpers@^5.0.1: dom-serializer@^1.0.1: version "1.4.1" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== dependencies: domelementtype "^2.0.1" @@ -2128,26 +2252,26 @@ dom-serializer@^1.0.1: domelementtype@^2.0.1, domelementtype@^2.2.0: version "2.3.0" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== domexception@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== dependencies: webidl-conversions "^7.0.0" domhandler@4.3.1, domhandler@^4.2.0, domhandler@^4.2.2: version "4.3.1" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== dependencies: domelementtype "^2.2.0" domutils@^2.8.0: version "2.8.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== dependencies: dom-serializer "^1.0.1" @@ -2155,142 +2279,183 @@ domutils@^2.8.0: domhandler "^4.2.0" dotenv@^16.3.1: - version "16.3.1" - resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz" - integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== + version "16.4.4" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.4.tgz#a26e7bb95ebd36272ebb56edb80b826aecf224c1" + integrity sha512-XvPXc8XAQThSjAbY6cQ/9PcBXmFoWuw1sQ3b8HqUCR6ziGXjkTi//kB9SWa2UwqlgdAIuRqAa/9hVljzPehbYg== duplexer2@^0.1.2: version "0.1.4" - resolved "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== dependencies: readable-stream "^2.0.2" -electron-to-chromium@^1.4.284: - version "1.4.289" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.289.tgz" - integrity sha512-relLdMfPBxqGCxy7Gyfm1HcbRPcFUJdlgnCPVgQ23sr1TvUrRJz0/QPoGP0+x41wOVSTN/Wi3w6YDgHiHJGOzg== +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + +electron-to-chromium@^1.4.648: + version "1.4.668" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.668.tgz#5cfed14f3240cdc70a359a49790cb295b1f097f1" + integrity sha512-ZOBocMYCehr9W31+GpMclR+KBaDZOoAEabLdhpZ8oU1JFDwIaFY0UDbpXVEUFc0BIP2O2Qn3rkfCjQmMR4T/bQ== embla-carousel-react@^7.0.9: - version "7.0.9" - resolved "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-7.0.9.tgz" - integrity sha512-KGnnZWukN+N2H6VjQf6C9mWmInqtCIiInhkGsJ9ckxri3m3Ks6wRDz+RRlV1kcuPHtRoxyFuBBGNwftWqMO9Pw== + version "7.1.0" + resolved "https://registry.yarnpkg.com/embla-carousel-react/-/embla-carousel-react-7.1.0.tgz#e716f4df7fd31f7ca3e59a3e011158167bc3c468" + integrity sha512-tbYRPRZSDNd2QLNqYDcArAakGIxtUbhS7tkP0dGXktXHGgcX+3ji3VrOUTOftBiujZrMV8kRxtrRUe/1soloIQ== dependencies: - embla-carousel "7.0.9" + embla-carousel "7.1.0" + +embla-carousel@7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/embla-carousel/-/embla-carousel-7.1.0.tgz#c770dd3ade9285a97f5e3b6bbf705bc35ec0f9b5" + integrity sha512-Bh8Pa8NWzgugLkf8sAGexQlBCNDFaej5BXiKgQdRJ1mUC9NWBrw9Z23YVPVGkguWoz5LMjZXXFVGCobl3UPt/Q== -embla-carousel@7.0.9: - version "7.0.9" - resolved "https://registry.npmjs.org/embla-carousel/-/embla-carousel-7.0.9.tgz" - integrity sha512-g8pGPd1BxexiZgw8F1aNM1KL3x3eEcz6TGTz20AuqCCynASBV7/h1+aS2rySDc/hHkXqbU8dk7TDhW71LCqVkQ== +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== emoji-regex@^9.2.2: version "9.2.2" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== -enhanced-resolve@^5.10.0: - version "5.12.0" - resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz" - integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== +enhanced-resolve@^5.12.0: + version "5.15.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" entities@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== entities@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/entities/-/entities-3.0.1.tgz#2b887ca62585e96db3903482d336c1006c3001d4" integrity sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q== entities@^4.4.0: - version "4.4.0" - resolved "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz" - integrity sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA== + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" -es-abstract@^1.19.0, es-abstract@^1.20.4: - version "1.21.1" - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz" - integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - es-set-tostringtag "^2.0.1" +es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22.4: + version "1.22.4" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.4.tgz#26eb2e7538c3271141f5754d31aabfdb215f27bf" + integrity sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg== + dependencies: + array-buffer-byte-length "^1.0.1" + arraybuffer.prototype.slice "^1.0.3" + available-typed-arrays "^1.0.6" + call-bind "^1.0.7" + es-define-property "^1.0.0" + es-errors "^1.3.0" + es-set-tostringtag "^2.0.2" es-to-primitive "^1.2.1" - function-bind "^1.1.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.1.3" - get-symbol-description "^1.0.0" + function.prototype.name "^1.1.6" + get-intrinsic "^1.2.4" + get-symbol-description "^1.0.2" globalthis "^1.0.3" gopd "^1.0.1" - has "^1.0.3" - has-property-descriptors "^1.0.0" + has-property-descriptors "^1.0.2" has-proto "^1.0.1" has-symbols "^1.0.3" - internal-slot "^1.0.4" - is-array-buffer "^3.0.1" + hasown "^2.0.1" + internal-slot "^1.0.7" + is-array-buffer "^3.0.4" is-callable "^1.2.7" is-negative-zero "^2.0.2" is-regex "^1.1.4" is-shared-array-buffer "^1.0.2" is-string "^1.0.7" - is-typed-array "^1.1.10" + is-typed-array "^1.1.13" is-weakref "^1.0.2" - object-inspect "^1.12.2" + object-inspect "^1.13.1" object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" - safe-regex-test "^1.0.0" - string.prototype.trimend "^1.0.6" - string.prototype.trimstart "^1.0.6" + object.assign "^4.1.5" + regexp.prototype.flags "^1.5.2" + safe-array-concat "^1.1.0" + safe-regex-test "^1.0.3" + string.prototype.trim "^1.2.8" + string.prototype.trimend "^1.0.7" + string.prototype.trimstart "^1.0.7" + typed-array-buffer "^1.0.1" + typed-array-byte-length "^1.0.0" + typed-array-byte-offset "^1.0.0" typed-array-length "^1.0.4" unbox-primitive "^1.0.2" - which-typed-array "^1.1.9" + which-typed-array "^1.1.14" -es-get-iterator@^1.1.2: - version "1.1.3" - resolved "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz" - integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== +es-array-method-boxes-properly@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" + integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== + +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" + get-intrinsic "^1.2.4" + +es-errors@^1.0.0, es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-iterator-helpers@^1.0.12, es-iterator-helpers@^1.0.15: + version "1.0.17" + resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz#123d1315780df15b34eb181022da43e734388bb8" + integrity sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ== + dependencies: + asynciterator.prototype "^1.0.0" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.22.4" + es-errors "^1.3.0" + es-set-tostringtag "^2.0.2" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + globalthis "^1.0.3" + has-property-descriptors "^1.0.2" + has-proto "^1.0.1" has-symbols "^1.0.3" - is-arguments "^1.1.1" - is-map "^2.0.2" - is-set "^2.0.2" - is-string "^1.0.7" - isarray "^2.0.5" - stop-iteration-iterator "^1.0.0" + internal-slot "^1.0.7" + iterator.prototype "^1.1.2" + safe-array-concat "^1.1.0" -es-set-tostringtag@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz" - integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== +es-set-tostringtag@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz#11f7cc9f63376930a5f20be4915834f4bc74f9c9" + integrity sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q== dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" + get-intrinsic "^1.2.2" has-tostringtag "^1.0.0" + hasown "^2.0.0" -es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== +es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== dependencies: - has "^1.0.3" + hasown "^2.0.0" es-to-primitive@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== dependencies: is-callable "^1.1.4" @@ -2298,138 +2463,140 @@ es-to-primitive@^1.2.1: is-symbol "^1.0.2" escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== escodegen@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz" - integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== + version "2.1.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" + integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== dependencies: esprima "^4.0.1" estraverse "^5.2.0" esutils "^2.0.2" - optionator "^0.8.1" optionalDependencies: source-map "~0.6.1" eslint-config-next@^13.1.6: - version "13.1.6" - resolved "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.1.6.tgz" - integrity sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw== + version "13.5.6" + resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.5.6.tgz#3a5a6222d5cb32256760ad68ab8e976e866a08c8" + integrity sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg== dependencies: - "@next/eslint-plugin-next" "13.1.6" - "@rushstack/eslint-patch" "^1.1.3" - "@typescript-eslint/parser" "^5.42.0" + "@next/eslint-plugin-next" "13.5.6" + "@rushstack/eslint-patch" "^1.3.3" + "@typescript-eslint/parser" "^5.4.2 || ^6.0.0" eslint-import-resolver-node "^0.3.6" eslint-import-resolver-typescript "^3.5.2" - eslint-plugin-import "^2.26.0" - eslint-plugin-jsx-a11y "^6.5.1" - eslint-plugin-react "^7.31.7" - eslint-plugin-react-hooks "^4.5.0" + eslint-plugin-import "^2.28.1" + eslint-plugin-jsx-a11y "^6.7.1" + eslint-plugin-react "^7.33.2" + eslint-plugin-react-hooks "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" eslint-config-prettier@^8.6.0: - version "8.6.0" - resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz" - integrity sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA== + version "8.10.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11" + integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg== -eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: - version "0.3.7" - resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz" - integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== +eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.9: + version "0.3.9" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== dependencies: debug "^3.2.7" - is-core-module "^2.11.0" - resolve "^1.22.1" + is-core-module "^2.13.0" + resolve "^1.22.4" eslint-import-resolver-typescript@^3.5.2: - version "3.5.3" - resolved "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz" - integrity sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ== + version "3.6.1" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz#7b983680edd3f1c5bce1a5829ae0bc2d57fe9efa" + integrity sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg== dependencies: debug "^4.3.4" - enhanced-resolve "^5.10.0" - get-tsconfig "^4.2.0" - globby "^13.1.2" - is-core-module "^2.10.0" + enhanced-resolve "^5.12.0" + eslint-module-utils "^2.7.4" + fast-glob "^3.3.1" + get-tsconfig "^4.5.0" + is-core-module "^2.11.0" is-glob "^4.0.3" - synckit "^0.8.4" -eslint-module-utils@^2.7.4: - version "2.7.4" - resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz" - integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== +eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" + integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== dependencies: debug "^3.2.7" -eslint-plugin-import@^2.26.0: - version "2.27.5" - resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz" - integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== +eslint-plugin-import@^2.28.1: + version "2.29.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643" + integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== dependencies: - array-includes "^3.1.6" - array.prototype.flat "^1.3.1" - array.prototype.flatmap "^1.3.1" + array-includes "^3.1.7" + array.prototype.findlastindex "^1.2.3" + array.prototype.flat "^1.3.2" + array.prototype.flatmap "^1.3.2" debug "^3.2.7" doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.7" - eslint-module-utils "^2.7.4" - has "^1.0.3" - is-core-module "^2.11.0" + eslint-import-resolver-node "^0.3.9" + eslint-module-utils "^2.8.0" + hasown "^2.0.0" + is-core-module "^2.13.1" is-glob "^4.0.3" minimatch "^3.1.2" - object.values "^1.1.6" - resolve "^1.22.1" - semver "^6.3.0" - tsconfig-paths "^3.14.1" - -eslint-plugin-jsx-a11y@^6.5.1: - version "6.7.1" - resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz" - integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== - dependencies: - "@babel/runtime" "^7.20.7" - aria-query "^5.1.3" - array-includes "^3.1.6" - array.prototype.flatmap "^1.3.1" - ast-types-flow "^0.0.7" - axe-core "^4.6.2" - axobject-query "^3.1.1" + object.fromentries "^2.0.7" + object.groupby "^1.0.1" + object.values "^1.1.7" + semver "^6.3.1" + tsconfig-paths "^3.15.0" + +eslint-plugin-jsx-a11y@^6.7.1: + version "6.8.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz#2fa9c701d44fcd722b7c771ec322432857fcbad2" + integrity sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA== + dependencies: + "@babel/runtime" "^7.23.2" + aria-query "^5.3.0" + array-includes "^3.1.7" + array.prototype.flatmap "^1.3.2" + ast-types-flow "^0.0.8" + axe-core "=4.7.0" + axobject-query "^3.2.1" damerau-levenshtein "^1.0.8" emoji-regex "^9.2.2" - has "^1.0.3" - jsx-ast-utils "^3.3.3" - language-tags "=1.0.5" + es-iterator-helpers "^1.0.15" + hasown "^2.0.0" + jsx-ast-utils "^3.3.5" + language-tags "^1.0.9" minimatch "^3.1.2" - object.entries "^1.1.6" - object.fromentries "^2.0.6" - semver "^6.3.0" + object.entries "^1.1.7" + object.fromentries "^2.0.7" -eslint-plugin-react-hooks@^4.5.0: +"eslint-plugin-react-hooks@^4.5.0 || 5.0.0-canary-7118f5dd7-20230705": version "4.6.0" - resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== -eslint-plugin-react@^7.31.7: - version "7.32.2" - resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz" - integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== +eslint-plugin-react@^7.33.2: + version "7.33.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz#69ee09443ffc583927eafe86ffebb470ee737608" + integrity sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== dependencies: array-includes "^3.1.6" array.prototype.flatmap "^1.3.1" array.prototype.tosorted "^1.1.1" doctrine "^2.1.0" + es-iterator-helpers "^1.0.12" estraverse "^5.3.0" jsx-ast-utils "^2.4.1 || ^3.0.0" minimatch "^3.1.2" @@ -2439,131 +2606,118 @@ eslint-plugin-react@^7.31.7: object.values "^1.1.6" prop-types "^15.8.1" resolve "^2.0.0-next.4" - semver "^6.3.0" + semver "^6.3.1" string.prototype.matchall "^4.0.8" -eslint-scope@^7.1.1: - version "7.1.1" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz" - integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint-visitor-keys@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz" - integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint@^8.33.0: - version "8.33.0" - resolved "https://registry.npmjs.org/eslint/-/eslint-8.33.0.tgz" - integrity sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA== - dependencies: - "@eslint/eslintrc" "^1.4.1" - "@humanwhocodes/config-array" "^0.11.8" + version "8.56.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.56.0.tgz#4957ce8da409dc0809f99ab07a1b94832ab74b15" + integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.56.0" + "@humanwhocodes/config-array" "^0.11.13" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" + "@ungap/structured-clone" "^1.2.0" + ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" escape-string-regexp "^4.0.0" - eslint-scope "^7.1.1" - eslint-utils "^3.0.0" - eslint-visitor-keys "^3.3.0" - espree "^9.4.0" - esquery "^1.4.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" + esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" file-entry-cache "^6.0.1" find-up "^5.0.0" glob-parent "^6.0.2" globals "^13.19.0" - grapheme-splitter "^1.0.4" + graphemer "^1.4.0" ignore "^5.2.0" - import-fresh "^3.0.0" imurmurhash "^0.1.4" is-glob "^4.0.0" is-path-inside "^3.0.3" - js-sdsl "^4.1.4" js-yaml "^4.1.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" lodash.merge "^4.6.2" minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" - regexpp "^3.2.0" + optionator "^0.9.3" strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.4.0: - version "9.4.1" - resolved "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz" - integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.3.0" + eslint-visitor-keys "^3.4.1" esprima@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== +esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== dependencies: estraverse "^5.1.0" esrecurse@^4.3.0: version "4.3.0" - resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: estraverse "^5.2.0" estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: version "5.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== esutils@^2.0.2: version "2.0.3" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== exenv@^1.2.0: version "1.2.2" - resolved "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d" integrity sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw== fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9: - version "3.2.12" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== +fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -2573,93 +2727,102 @@ fast-glob@^3.2.11, fast-glob@^3.2.12, fast-glob@^3.2.9: fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: +fast-levenshtein@^2.0.6: version "2.0.6" - resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: reusify "^1.0.4" file-entry-cache@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: flat-cache "^3.0.4" fill-range@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== dependencies: to-regex-range "^5.0.1" find-root@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== find-up@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== dependencies: locate-path "^6.0.0" path-exists "^4.0.0" flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== dependencies: - flatted "^3.1.0" + flatted "^3.2.9" + keyv "^4.5.3" rimraf "^3.0.2" -flatted@^3.1.0: - version "3.2.7" - resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz" - integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== +flatted@^3.2.9: + version "3.2.9" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" + integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== -focus-lock@^0.11.6: - version "0.11.6" - resolved "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.6.tgz" - integrity sha512-KSuV3ur4gf2KqMNoZx3nXNVhqCkn42GuTYCX4tXPEwf0MjpFQmNMiN6m7dXaUXgIoivL6/65agoUMg4RLS0Vbg== +focus-lock@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-1.2.0.tgz#8a59d4171ba07b2849a7a60f064fc133db21e610" + integrity sha512-MGUkR6hFmRNeoQxUtL9jYckpf6DZhlD4crD8FgEO9hS+yXaCg2vi2hat9fB9qUe9YsLa6eE9ykldqaqLU0kYKg== dependencies: tslib "^2.0.3" for-each@^0.3.3: version "0.3.3" - resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== dependencies: is-callable "^1.1.3" +foreground-child@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" + integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + form-data@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" mime-types "^2.1.12" -fraction.js@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz" - integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== +fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== framer-motion@^10.12.10: - version "10.12.10" - resolved "https://registry.npmjs.org/framer-motion/-/framer-motion-10.12.10.tgz" - integrity sha512-f/VkrpxfG4xSmBi105/NCfcTt219IgglQEUR0BsuFZAg+be6N3QAcujFyBEvBvbDOSP9Ccv6OMiaY0HFMnBoMA== + version "10.18.0" + resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-10.18.0.tgz#1f4fc51403996ea7170af885bd44a7079d255950" + integrity sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w== dependencies: tslib "^2.4.0" optionalDependencies: @@ -2667,85 +2830,90 @@ framer-motion@^10.12.10: framesync@6.1.2: version "6.1.2" - resolved "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz" + resolved "https://registry.yarnpkg.com/framesync/-/framesync-6.1.2.tgz#755eff2fb5b8f3b4d2b266dd18121b300aefea27" integrity sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g== dependencies: tslib "2.4.0" fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== +function.prototype.name@^1.1.5, function.prototype.name@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" - functions-have-names "^1.2.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + functions-have-names "^1.2.3" -functions-have-names@^1.2.2: +functions-have-names@^1.2.3: version "1.2.3" - resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: - version "1.2.0" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz" - integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== +get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== dependencies: - function-bind "^1.1.1" - has "^1.0.3" + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" has-symbols "^1.0.3" + hasown "^2.0.0" get-nonce@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/get-nonce/-/get-nonce-1.0.1.tgz#fdf3f0278073820d2ce9426c18f07481b1e0cdf3" integrity sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q== -get-symbol-description@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" - integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== +get-symbol-description@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" + call-bind "^1.0.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" -get-tsconfig@^4.2.0: - version "4.4.0" - resolved "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.4.0.tgz" - integrity sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ== +get-tsconfig@^4.5.0: + version "4.7.2" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.2.tgz#0dcd6fb330391d46332f4c6c1bf89a6514c2ddce" + integrity sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A== + dependencies: + resolve-pkg-maps "^1.0.0" glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob-parent@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" glob@7.1.7: version "7.1.7" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== dependencies: fs.realpath "^1.0.0" @@ -2755,9 +2923,20 @@ glob@7.1.7: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^10.3.10: + version "10.3.10" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b" + integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== + dependencies: + foreground-child "^3.1.0" + jackspeak "^2.3.5" + minimatch "^9.0.1" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry "^1.10.1" + glob@^7.1.3: version "7.2.3" - resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" @@ -2768,27 +2947,22 @@ glob@^7.1.3: path-is-absolute "^1.0.0" globals@^13.19.0: - version "13.20.0" - resolved "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz" - integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + version "13.24.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== dependencies: type-fest "^0.20.2" globalthis@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== dependencies: define-properties "^1.1.3" -globalyzer@0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz" - integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== - globby@^11.1.0: version "11.1.0" - resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -2798,95 +2972,79 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -globby@^13.1.2: - version "13.1.3" - resolved "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz" - integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw== - dependencies: - dir-glob "^3.0.1" - fast-glob "^3.2.11" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^4.0.0" - -globrex@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz" - integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== - gopd@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== dependencies: get-intrinsic "^1.1.3" -graceful-fs@^4.2.4: - version "4.2.10" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== +graceful-fs@^4.2.11, graceful-fs@^4.2.4: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -grapheme-splitter@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz" - integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== has-bigints@^1.0.1, has-bigints@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: - get-intrinsic "^1.1.1" + es-define-property "^1.0.0" has-proto@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== has-symbols@^1.0.2, has-symbols@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== +has-tostringtag@^1.0.0, has-tostringtag@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== dependencies: - has-symbols "^1.0.2" + has-symbols "^1.0.3" -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== +hasown@^2.0.0, hasown@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.1.tgz#26f48f039de2c0f8d3356c223fb8d50253519faa" + integrity sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA== dependencies: - function-bind "^1.1.1" + function-bind "^1.1.2" hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2: version "3.3.2" - resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== dependencies: react-is "^16.7.0" html-dom-parser@1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/html-dom-parser/-/html-dom-parser-1.2.0.tgz#8f689b835982ffbf245eda99730e92b8462c111e" integrity sha512-2HIpFMvvffsXHFUFjso0M9LqM+1Lm22BF+Df2ba+7QHJXjk63pWChEnI6YG27eaWqUdfnh5/Vy+OXrNTtepRsg== dependencies: domhandler "4.3.1" @@ -2894,14 +3052,14 @@ html-dom-parser@1.2.0: html-encoding-sniffer@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== dependencies: whatwg-encoding "^2.0.0" html-react-parser@1.4.12: version "1.4.12" - resolved "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.12.tgz" + resolved "https://registry.yarnpkg.com/html-react-parser/-/html-react-parser-1.4.12.tgz#5d4336e3853a75e4ac678c9815c15c58581bb30e" integrity sha512-nqYQzr4uXh67G9ejAG7djupTHmQvSTgjY83zbXLRfKHJ0F06751jXx6WKSFARDdXxCngo2/7H4Rwtfeowql4gQ== dependencies: domhandler "4.3.1" @@ -2911,7 +3069,7 @@ html-react-parser@1.4.12: html-tokenize@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/html-tokenize/-/html-tokenize-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/html-tokenize/-/html-tokenize-2.0.1.tgz#c3b2ea6e2837d4f8c06693393e9d2a12c960be5f" integrity sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w== dependencies: buffer-from "~0.1.1" @@ -2922,7 +3080,7 @@ html-tokenize@^2.0.0: htmlparser2@7.2.0: version "7.2.0" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-7.2.0.tgz#8817cdea38bbc324392a90b1990908e81a65f5a5" integrity sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog== dependencies: domelementtype "^2.0.1" @@ -2932,7 +3090,7 @@ htmlparser2@7.2.0: http-proxy-agent@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== dependencies: "@tootallnate/once" "2" @@ -2941,7 +3099,7 @@ http-proxy-agent@^5.0.0: https-proxy-agent@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== dependencies: agent-base "6" @@ -2949,19 +3107,19 @@ https-proxy-agent@^5.0.1: iconv-lite@0.6.3: version "0.6.3" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== dependencies: safer-buffer ">= 2.1.2 < 3.0.0" ignore@^5.2.0: - version "5.2.4" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== -import-fresh@^3.0.0, import-fresh@^3.2.1: +import-fresh@^3.2.1: version "3.3.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" @@ -2969,12 +3127,12 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== inflight@^1.0.4: version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" @@ -2982,74 +3140,75 @@ inflight@^1.0.4: inherits@2, inherits@~2.0.1, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== inline-style-parser@0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz" + resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== -internal-slot@^1.0.3, internal-slot@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz" - integrity sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ== +internal-slot@^1.0.5, internal-slot@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" + es-errors "^1.3.0" + hasown "^2.0.0" side-channel "^1.0.4" invariant@^2.2.4: version "2.2.4" - resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== - -is-arguments@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== +ip-address@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" + integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + jsbn "1.1.0" + sprintf-js "^1.1.3" -is-array-buffer@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz" - integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ== +is-array-buffer@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== dependencies: call-bind "^1.0.2" - get-intrinsic "^1.1.3" - is-typed-array "^1.1.10" + get-intrinsic "^1.2.1" is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + dependencies: + has-tostringtag "^1.0.0" + is-bigint@^1.0.1: version "1.0.4" - resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== dependencies: has-bigints "^1.0.1" is-binary-path@~2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" is-boolean-object@^1.1.0: version "1.1.2" - resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== dependencies: call-bind "^1.0.2" @@ -3057,193 +3216,220 @@ is-boolean-object@^1.1.0: is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: version "1.2.7" - resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== -is-core-module@^2.10.0, is-core-module@^2.11.0, is-core-module@^2.9.0: - version "2.11.0" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz" - integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== +is-core-module@^2.11.0, is-core-module@^2.13.0, is-core-module@^2.13.1: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: - has "^1.0.3" + hasown "^2.0.0" is-date-object@^1.0.1, is-date-object@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== dependencies: has-tostringtag "^1.0.0" -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-finalizationregistry@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" + integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== + dependencies: + call-bind "^1.0.2" + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-generator-function@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" -is-map@^2.0.1, is-map@^2.0.2: +is-map@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== is-negative-zero@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== is-number-object@^1.0.4: version "1.0.7" - resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== dependencies: has-tostringtag "^1.0.0" is-number@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-path-inside@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-potential-custom-element-name@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== is-regex@^1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== dependencies: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-set@^2.0.1, is-set@^2.0.2: +is-set@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== is-shared-array-buffer@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== dependencies: call-bind "^1.0.2" is-string@^1.0.5, is-string@^1.0.7: version "1.0.7" - resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== dependencies: has-tostringtag "^1.0.0" is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.4" - resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== dependencies: has-symbols "^1.0.2" -is-typed-array@^1.1.10, is-typed-array@^1.1.9: - version "1.1.10" - resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz" - integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== +is-typed-array@^1.1.10, is-typed-array@^1.1.13, is-typed-array@^1.1.9: + version "1.1.13" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" + which-typed-array "^1.1.14" is-weakmap@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== is-weakref@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== dependencies: call-bind "^1.0.2" is-weakset@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== dependencies: call-bind "^1.0.2" get-intrinsic "^1.1.1" -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - isarray@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== isarray@^2.0.5: version "2.0.5" - resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== isarray@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isexe@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== -js-sdsl@^4.1.4: - version "4.3.0" - resolved "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz" - integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== +iterator.prototype@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0" + integrity sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== + dependencies: + define-properties "^1.2.1" + get-intrinsic "^1.2.1" + has-symbols "^1.0.3" + reflect.getprototypeof "^1.0.4" + set-function-name "^2.0.1" + +jackspeak@^2.3.5: + version "2.3.6" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" + integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + +jiti@^1.19.1: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" -jsdom@20.0.3: - version "20.0.3" - resolved "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz" - integrity sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ== +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + +jsdom@21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-21.1.1.tgz#ab796361e3f6c01bcfaeda1fea3c06197ac9d8ae" + integrity sha512-Jjgdmw48RKcdAIQyUD1UdBh2ecH7VqwaXPN3ehoZN6MqgVbMn+lRm1aAT1AsdJRAJpwfa4IpwgzySn61h2qu3w== dependencies: abab "^2.0.6" - acorn "^8.8.1" + acorn "^8.8.2" acorn-globals "^7.0.0" - cssom "^0.5.0" - cssstyle "^2.3.0" - data-urls "^3.0.2" - decimal.js "^10.4.2" + cssstyle "^3.0.0" + data-urls "^4.0.0" + decimal.js "^10.4.3" domexception "^4.0.0" escodegen "^2.0.0" form-data "^4.0.0" @@ -3252,7 +3438,8 @@ jsdom@20.0.3: https-proxy-agent "^5.0.1" is-potential-custom-element-name "^1.0.1" nwsapi "^2.2.2" - parse5 "^7.1.1" + parse5 "^7.1.2" + rrweb-cssom "^0.6.0" saxes "^6.0.0" symbol-tree "^3.2.4" tough-cookie "^4.1.2" @@ -3260,132 +3447,177 @@ jsdom@20.0.3: webidl-conversions "^7.0.0" whatwg-encoding "^2.0.0" whatwg-mimetype "^3.0.0" - whatwg-url "^11.0.0" - ws "^8.11.0" + whatwg-url "^12.0.1" + ws "^8.13.0" + xml-name-validator "^4.0.0" + +jsdom@22.1.0: + version "22.1.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-22.1.0.tgz#0fca6d1a37fbeb7f4aac93d1090d782c56b611c8" + integrity sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw== + dependencies: + abab "^2.0.6" + cssstyle "^3.0.0" + data-urls "^4.0.0" + decimal.js "^10.4.3" + domexception "^4.0.0" + form-data "^4.0.0" + html-encoding-sniffer "^3.0.0" + http-proxy-agent "^5.0.0" + https-proxy-agent "^5.0.1" + is-potential-custom-element-name "^1.0.1" + nwsapi "^2.2.4" + parse5 "^7.1.2" + rrweb-cssom "^0.6.0" + saxes "^6.0.0" + symbol-tree "^3.2.4" + tough-cookie "^4.1.2" + w3c-xmlserializer "^4.0.0" + webidl-conversions "^7.0.0" + whatwg-encoding "^2.0.0" + whatwg-mimetype "^3.0.0" + whatwg-url "^12.0.1" + ws "^8.13.0" xml-name-validator "^4.0.0" +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + json-parse-even-better-errors@^2.3.0: version "2.3.1" - resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -json5@^1.0.1: +json5@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== dependencies: minimist "^1.2.0" -"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: - version "3.3.3" - resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz" - integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5: + version "3.3.5" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" + integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== dependencies: - array-includes "^3.1.5" - object.assign "^4.1.3" + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" kareem@2.5.1: version "2.5.1" - resolved "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz" + resolved "https://registry.yarnpkg.com/kareem/-/kareem-2.5.1.tgz#7b8203e11819a8e77a34b3517d3ead206764d15d" integrity sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA== -language-subtag-registry@~0.3.2: +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +language-subtag-registry@^0.3.20: version "0.3.22" - resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== -language-tags@=1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz" - integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== +language-tags@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777" + integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA== dependencies: - language-subtag-registry "~0.3.2" + language-subtag-registry "^0.3.20" levn@^0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== dependencies: prelude-ls "^1.2.1" type-check "~0.4.0" -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" +lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== -lilconfig@^2.0.5, lilconfig@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz" - integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== +lilconfig@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.0.0.tgz#f8067feb033b5b74dab4602a5f5029420be749bc" + integrity sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g== lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== locate-path@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== dependencies: p-locate "^5.0.0" lodash.merge@^4.6.2: version "4.6.2" - resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== lodash.mergewith@4.6.2: version "4.6.2" - resolved "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz" + resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" +"lru-cache@^9.1.1 || ^10.0.0": + version "10.2.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3" + integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q== + memoize-one@^5.1.1: version "5.2.1" - resolved "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz" + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q== memory-pager@^1.0.2: version "1.5.0" - resolved "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz" + resolved "https://registry.yarnpkg.com/memory-pager/-/memory-pager-1.5.0.tgz#d8751655d22d384682741c972f2c3d6dfa3e66b5" integrity sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== micromatch@^4.0.4, micromatch@^4.0.5: version "4.0.5" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== dependencies: braces "^3.0.2" @@ -3393,61 +3625,76 @@ micromatch@^4.0.4, micromatch@^4.0.5: mime-db@1.52.0: version "1.52.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== mime-types@^2.1.12: version "2.1.35" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" +minimatch@9.0.3, minimatch@^9.0.1: + version "9.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== + dependencies: + brace-expansion "^2.0.1" + minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" -minimist@^1.2.0, minimist@^1.2.6: - version "1.2.7" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz" - integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== - -minimist@~1.2.5: +minimist@^1.2.0, minimist@^1.2.6, minimist@~1.2.5: version "1.2.8" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0": + version "7.0.4" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" + integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== + mongo@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/mongo/-/mongo-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/mongo/-/mongo-0.1.0.tgz#c8af0f8df98d4894b772b37342987c3becf3718c" integrity sha512-2MPq+GCNKhah0V/g/HIQI/S1h6Ycd87KPuXAITkeXWT6wncvABFxOaXdzCKlRvLSQRUkDimllrRrhoHUTD8usg== dependencies: mongodb "*" mongodb-connection-string-url@^2.6.0: version "2.6.0" - resolved "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz" + resolved "https://registry.yarnpkg.com/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz#57901bf352372abdde812c81be47b75c6b2ec5cf" integrity sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ== dependencies: "@types/whatwg-url" "^8.2.1" whatwg-url "^11.0.0" +mongodb-connection-string-url@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.0.tgz#b4f87f92fd8593f3b9365f592515a06d304a1e9c" + integrity sha512-t1Vf+m1I5hC2M5RJx/7AtxgABy1cZmIPQRMXw+gEIPn/cZNF3Oiy+l0UIypUwVB5trcWHq3crg2g3uAR9aAwsQ== + dependencies: + "@types/whatwg-url" "^11.0.2" + whatwg-url "^13.0.0" + mongodb@*: - version "6.2.0" - resolved "https://registry.npmjs.org/mongodb/-/mongodb-6.2.0.tgz" - integrity sha512-d7OSuGjGWDZ5usZPqfvb36laQ9CPhnWkAGHT61x5P95p/8nMVeH8asloMwW6GcYFeB0Vj4CB/1wOTDG2RA9BFA== + version "6.3.0" + resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-6.3.0.tgz#ec9993b19f7ed2ea715b903fcac6171c9d1d38ca" + integrity sha512-tt0KuGjGtLUhLoU263+xvQmPHEGTw5LbcNC73EoFRYgSHwZt5tsoJC110hDyO1kjQzpgNrpdcSza9PknWN4LrA== dependencies: "@mongodb-js/saslprep" "^1.1.0" bson "^6.2.0" - mongodb-connection-string-url "^2.6.0" + mongodb-connection-string-url "^3.0.0" -mongodb@5.9.0: - version "5.9.0" - resolved "https://registry.npmjs.org/mongodb/-/mongodb-5.9.0.tgz" - integrity sha512-g+GCMHN1CoRUA+wb1Agv0TI4YTSiWr42B5ulkiAfLLHitGK1R+PkSAf3Lr5rPZwi/3F04LiaZEW0Kxro9Fi2TA== +mongodb@5.9.1: + version "5.9.1" + resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-5.9.1.tgz#da03ea253b0972bf8097301fa5f65e34acad18fa" + integrity sha512-NBGA8AfJxGPeB12F73xXwozt8ZpeIPmCUeWRwl9xejozTXFes/3zaep9zhzs1B/nKKsw4P3I4iPfXl3K7s6g+Q== dependencies: bson "^5.5.0" mongodb-connection-string-url "^2.6.0" @@ -3456,13 +3703,13 @@ mongodb@5.9.0: "@mongodb-js/saslprep" "^1.1.0" mongoose@^7.1.1: - version "7.6.4" - resolved "https://registry.npmjs.org/mongoose/-/mongoose-7.6.4.tgz" - integrity sha512-kadPkS/f5iZJrrMxxOvSoOAErXmdnb28lMvHmuYgmV1ZQTpRqpp132PIPHkJMbG4OC2H0eSXYw/fNzYTH+LUcw== + version "7.6.8" + resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-7.6.8.tgz#2b088f0d2b8943f0748e99f7010124877830bcf9" + integrity sha512-q9zAySH+UtOK5yonWyNcLfq3PxrY6s4gdta4qNGKNOE2yTVoY9FP4hQtvWYnv4rkdk7T8QmQMC7bbhJjDxIunw== dependencies: bson "^5.5.0" kareem "2.5.1" - mongodb "5.9.0" + mongodb "5.9.1" mpath "0.9.0" mquery "5.0.0" ms "2.1.3" @@ -3470,236 +3717,225 @@ mongoose@^7.1.1: mpath@0.9.0: version "0.9.0" - resolved "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz" + resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.9.0.tgz#0c122fe107846e31fc58c75b09c35514b3871904" integrity sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew== mquery@5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/mquery/-/mquery-5.0.0.tgz#a95be5dfc610b23862df34a47d3e5d60e110695d" integrity sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg== dependencies: debug "4.x" ms@2.1.2: version "2.1.2" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== ms@2.1.3, ms@^2.1.1: version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== multipipe@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-1.0.2.tgz#cc13efd833c9cda99f224f868461b8e1a3fd939d" integrity sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ== dependencies: duplexer2 "^0.1.2" object-assign "^4.1.0" -nanoid@^3.3.4: - version "3.3.4" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" - integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@^3.3.6, nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== next@latest: - version "13.2.3" - resolved "https://registry.npmjs.org/next/-/next-13.2.3.tgz" - integrity sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w== - dependencies: - "@next/env" "13.2.3" - "@swc/helpers" "0.4.14" - caniuse-lite "^1.0.30001406" - postcss "8.4.14" + version "14.1.0" + resolved "https://registry.yarnpkg.com/next/-/next-14.1.0.tgz#b31c0261ff9caa6b4a17c5af019ed77387174b69" + integrity sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q== + dependencies: + "@next/env" "14.1.0" + "@swc/helpers" "0.5.2" + busboy "1.6.0" + caniuse-lite "^1.0.30001579" + graceful-fs "^4.2.11" + postcss "8.4.31" styled-jsx "5.1.1" optionalDependencies: - "@next/swc-android-arm-eabi" "13.2.3" - "@next/swc-android-arm64" "13.2.3" - "@next/swc-darwin-arm64" "13.2.3" - "@next/swc-darwin-x64" "13.2.3" - "@next/swc-freebsd-x64" "13.2.3" - "@next/swc-linux-arm-gnueabihf" "13.2.3" - "@next/swc-linux-arm64-gnu" "13.2.3" - "@next/swc-linux-arm64-musl" "13.2.3" - "@next/swc-linux-x64-gnu" "13.2.3" - "@next/swc-linux-x64-musl" "13.2.3" - "@next/swc-win32-arm64-msvc" "13.2.3" - "@next/swc-win32-ia32-msvc" "13.2.3" - "@next/swc-win32-x64-msvc" "13.2.3" - -node-releases@^2.0.8: - version "2.0.10" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz" - integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== + "@next/swc-darwin-arm64" "14.1.0" + "@next/swc-darwin-x64" "14.1.0" + "@next/swc-linux-arm64-gnu" "14.1.0" + "@next/swc-linux-arm64-musl" "14.1.0" + "@next/swc-linux-x64-gnu" "14.1.0" + "@next/swc-linux-x64-musl" "14.1.0" + "@next/swc-win32-arm64-msvc" "14.1.0" + "@next/swc-win32-ia32-msvc" "14.1.0" + "@next/swc-win32-x64-msvc" "14.1.0" + +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== normalize-range@^0.1.2: version "0.1.2" - resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== -nwsapi@^2.2.2: - version "2.2.2" - resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz" - integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw== +nwsapi@^2.2.2, nwsapi@^2.2.4: + version "2.2.7" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" + integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== -object-assign@^4.1.0, object-assign@^4.1.1: +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== object-hash@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== -object-inspect@^1.12.2, object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -object-is@^1.1.5: - version "1.1.5" - resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" - integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" +object-inspect@^1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object-keys@~0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" integrity sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw== -object.assign@^4.1.3, object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== +object.assign@^4.1.4, object.assign@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" + call-bind "^1.0.5" + define-properties "^1.2.1" has-symbols "^1.0.3" object-keys "^1.1.1" -object.entries@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz" - integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== +object.entries@^1.1.6, object.entries@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.7.tgz#2b47760e2a2e3a752f39dd874655c61a7f03c131" + integrity sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" -object.fromentries@^2.0.6: - version "2.0.6" - resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz" - integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== +object.fromentries@^2.0.6, object.fromentries@^2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.7.tgz#71e95f441e9a0ea6baf682ecaaf37fa2a8d7e616" + integrity sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" + +object.groupby@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.2.tgz#494800ff5bab78fd0eff2835ec859066e00192ec" + integrity sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw== + dependencies: + array.prototype.filter "^1.0.3" + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.0.0" object.hasown@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz" - integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== + version "1.1.3" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.3.tgz#6a5f2897bb4d3668b8e79364f98ccf971bda55ae" + integrity sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA== dependencies: - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" -object.values@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz" - integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== +object.values@^1.1.6, object.values@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.7.tgz#617ed13272e7e1071b43973aa1655d9291b8442a" + integrity sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" once@^1.3.0: version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" -open@^8.4.0: - version "8.4.0" - resolved "https://registry.npmjs.org/open/-/open-8.4.0.tgz" - integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" p-limit@^3.0.2: version "3.1.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" p-locate@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== dependencies: p-limit "^3.0.2" p5@^1.8.0: - version "1.8.0" - resolved "https://registry.npmjs.org/p5/-/p5-1.8.0.tgz" - integrity sha512-LHzRRl+aWEZVXmK+L9TDRNw5zm90wvwMdY7yTmsFkdNeXrU9n2KSZbonCTXkyGgriguovxJrDDgyhkynOxWB1A== + version "1.9.0" + resolved "https://registry.yarnpkg.com/p5/-/p5-1.9.0.tgz#04c406ae683449106d514108648035b21aa850fb" + integrity sha512-+5/hz0ZokCDf7BMMAeemE7FIo7gFZK7ImL62acHLXZwerGjqj+171bnaAWj4aCFCx6fwysAr2U7/AKuPyPhehA== parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parse-json@^5.0.0: version "5.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" @@ -3707,138 +3943,146 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -parse5@^7.1.1: +parse5@^7.1.2: version "7.1.2" - resolved "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== dependencies: entities "^4.4.0" path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^3.1.0: version "3.1.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-scurry@^1.10.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" + integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== + dependencies: + lru-cache "^9.1.1 || ^10.0.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-type@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== picocolors@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== pify@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== -postcss-import@^14.1.0: - version "14.1.0" - resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz" - integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== +pirates@^4.0.1: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== dependencies: postcss-value-parser "^4.0.0" read-cache "^1.0.0" resolve "^1.1.7" -postcss-js@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz" - integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== dependencies: camelcase-css "^2.0.1" -postcss-load-config@^3.1.4: - version "3.1.4" - resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz" - integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== +postcss-load-config@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" + integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== dependencies: - lilconfig "^2.0.5" - yaml "^1.10.2" + lilconfig "^3.0.0" + yaml "^2.3.4" -postcss-nested@6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz" - integrity sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w== +postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== dependencies: - postcss-selector-parser "^6.0.10" + postcss-selector-parser "^6.0.11" -postcss-selector-parser@^6.0.10: - version "6.0.11" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz" - integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== +postcss-selector-parser@^6.0.11: + version "6.0.15" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz#11cc2b21eebc0b99ea374ffb9887174855a01535" + integrity sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@8.4.14: - version "8.4.14" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz" - integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== +postcss@8.4.31: + version "8.4.31" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" + integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== dependencies: - nanoid "^3.3.4" + nanoid "^3.3.6" picocolors "^1.0.0" source-map-js "^1.0.2" -postcss@^8.4.18, postcss@^8.4.21: - version "8.4.21" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz" - integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== +postcss@^8.4.21, postcss@^8.4.23: + version "8.4.35" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.35.tgz#60997775689ce09011edf083a549cea44aabe2f7" + integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== dependencies: - nanoid "^3.3.4" + nanoid "^3.3.7" picocolors "^1.0.0" source-map-js "^1.0.2" prelude-ls@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - prettier@^2.8.4: - version "2.8.4" - resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.4.tgz" - integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw== + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -"prop-types@>= 15.6.0", prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: +prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" - resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== dependencies: loose-envify "^1.4.0" @@ -3847,37 +4091,32 @@ process-nextick-args@~2.0.0: psl@^1.1.33: version "1.9.0" - resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== -punycode@^2.1.0, punycode@^2.1.1: - version "2.3.0" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== +punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== querystringify@^2.1.1: version "2.2.0" - resolved "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -quick-lru@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz" - integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== - raf-schd@^4.0.2: version "4.0.3" - resolved "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/raf-schd/-/raf-schd-4.0.3.tgz#5d6c34ef46f8b2a0e880a8fcdb743efc5bfdbc1a" integrity sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ== react-beautiful-dnd@^13.1.1: version "13.1.1" - resolved "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz" + resolved "https://registry.yarnpkg.com/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz#b0f3087a5840920abf8bb2325f1ffa46d8c4d0a2" integrity sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ== dependencies: "@babel/runtime" "^7.9.2" @@ -3889,40 +4128,40 @@ react-beautiful-dnd@^13.1.1: use-memo-one "^1.1.1" react-blockly@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/react-blockly/-/react-blockly-7.0.1.tgz" - integrity sha512-Lsteh2KmCjwMk/bRFPFTEnc0ylpgseLC1S9S/fs8kE8vnABJFq385G9X+WHtJ8Txpd/YhODdIhZ+rlU4EavasA== + version "7.3.0" + resolved "https://registry.yarnpkg.com/react-blockly/-/react-blockly-7.3.0.tgz#0866665d9417a14d4eb8cf6417adb4b0b5c5b800" + integrity sha512-moaaxX0u3gSyToO82F2ahIOj+HmcTWcy9dXxboh8VsMFxSE2ebPUltLMEfANXpCqzoY+ajqiTgb4g+qudZ34aw== dependencies: blockly ">= 3.20200024.0" - prop-types ">= 15.6.0" + prop-types "^15.8.1" react-clientside-effect@^1.2.6: version "1.2.6" - resolved "https://registry.npmjs.org/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz" + resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz#29f9b14e944a376b03fb650eed2a754dd128ea3a" integrity sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg== dependencies: "@babel/runtime" "^7.12.13" react-dom@18.2.0: version "18.2.0" - resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== dependencies: loose-envify "^1.1.0" scheduler "^0.23.0" -react-fast-compare@3.2.1, react-fast-compare@^3.0.1: - version "3.2.1" - resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.1.tgz" - integrity sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg== +react-fast-compare@3.2.2, react-fast-compare@^3.0.1: + version "3.2.2" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" + integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== -react-focus-lock@^2.9.2: - version "2.9.4" - resolved "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-2.9.4.tgz" - integrity sha512-7pEdXyMseqm3kVjhdVH18sovparAzLg5h6WvIx7/Ck3ekjhrrDMEegHSa3swwC8wgfdd7DIdUVRGeiHT9/7Sgg== +react-focus-lock@^2.9.4: + version "2.10.1" + resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.10.1.tgz#d047219d428e933c7041339000ea42f4c37b29f7" + integrity sha512-40zZ/Cvl3eMRoHrpcc11WmY+Md/kbjWofNLoGKvt+bti/mAeLZXkqbSIhhVlgXfdV1wD5puopcep5l4KX22Xvg== dependencies: "@babel/runtime" "^7.0.0" - focus-lock "^0.11.6" + focus-lock "^1.2.0" prop-types "^15.6.2" react-clientside-effect "^1.2.6" use-callback-ref "^1.3.0" @@ -3930,22 +4169,22 @@ react-focus-lock@^2.9.2: react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" - resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== react-is@^17.0.2: version "17.0.2" - resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== react-lifecycles-compat@^3.0.0: version "3.0.4" - resolved "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== react-modal@^3.16.1: version "3.16.1" - resolved "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz" + resolved "https://registry.yarnpkg.com/react-modal/-/react-modal-3.16.1.tgz#34018528fc206561b1a5467fc3beeaddafb39b2b" integrity sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg== dependencies: exenv "^1.2.0" @@ -3955,7 +4194,7 @@ react-modal@^3.16.1: react-popper@^2.2.4: version "2.3.0" - resolved "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.3.0.tgz#17891c620e1320dce318bad9fede46a5f71c70ba" integrity sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q== dependencies: react-fast-compare "^3.0.1" @@ -3963,12 +4202,12 @@ react-popper@^2.2.4: react-property@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/react-property/-/react-property-2.0.0.tgz#2156ba9d85fa4741faf1918b38efc1eae3c6a136" integrity sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw== react-redux@^7.2.0: version "7.2.9" - resolved "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.9.tgz#09488fbb9416a4efe3735b7235055442b042481d" integrity sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ== dependencies: "@babel/runtime" "^7.15.4" @@ -3978,20 +4217,20 @@ react-redux@^7.2.0: prop-types "^15.7.2" react-is "^17.0.2" -react-remove-scroll-bar@^2.3.3: +react-remove-scroll-bar@^2.3.4: version "2.3.4" - resolved "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz" + resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz#53e272d7a5cb8242990c7f144c44d8bd8ab5afd9" integrity sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A== dependencies: react-style-singleton "^2.2.1" tslib "^2.0.0" -react-remove-scroll@^2.5.5: - version "2.5.5" - resolved "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz" - integrity sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw== +react-remove-scroll@^2.5.5, react-remove-scroll@^2.5.6: + version "2.5.7" + resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz#15a1fd038e8497f65a695bf26a4a57970cac1ccb" + integrity sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA== dependencies: - react-remove-scroll-bar "^2.3.3" + react-remove-scroll-bar "^2.3.4" react-style-singleton "^2.2.1" tslib "^2.1.0" use-callback-ref "^1.3.0" @@ -3999,7 +4238,7 @@ react-remove-scroll@^2.5.5: react-sortable-hoc@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz#f6780d8aa4b922a21f3e754af542f032677078b7" integrity sha512-JZUw7hBsAHXK7PTyErJyI7SopSBFRcFHDjWW5SWjcugY0i6iH7f+eJkY8cJmGMlZ1C9xz1J3Vjz0plFpavVeRg== dependencies: "@babel/runtime" "^7.2.0" @@ -4008,7 +4247,7 @@ react-sortable-hoc@^2.0.0: react-style-singleton@^2.2.1: version "2.2.1" - resolved "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.1.tgz#f99e420492b2d8f34d38308ff660b60d0b1205b4" integrity sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g== dependencies: get-nonce "^1.0.0" @@ -4017,7 +4256,7 @@ react-style-singleton@^2.2.1: react-textarea-autosize@8.3.4: version "8.3.4" - resolved "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz" + resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz#270a343de7ad350534141b02c9cb78903e553524" integrity sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ== dependencies: "@babel/runtime" "^7.10.2" @@ -4026,7 +4265,7 @@ react-textarea-autosize@8.3.4: react-transition-group@^4.4.2: version "4.4.5" - resolved "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== dependencies: "@babel/runtime" "^7.5.5" @@ -4036,15 +4275,15 @@ react-transition-group@^4.4.2: react@18.2.0: version "18.2.0" - resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== dependencies: loose-envify "^1.1.0" reactstrap@^9.1.6: - version "9.1.6" - resolved "https://registry.npmjs.org/reactstrap/-/reactstrap-9.1.6.tgz" - integrity sha512-79h/L/pvMJIz198VULMpLbEyXFeArFTLAnEtk5anppJhAnZnfyM1pNuQWZNGXy6cUlgsaEy2gBziAw4tockOnw== + version "9.2.2" + resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-9.2.2.tgz#d3a062cb1492a9cf6ed4684698044fa1996350c9" + integrity sha512-4KroiGOdqZLAnMGzHjpErW3G7bLB+QbKzzMLIDXydPIV0y74lpdL7WtXHkLWAGInd97WCPNx4+R0NQDPyzIfhw== dependencies: "@babel/runtime" "^7.12.5" "@popperjs/core" "^2.6.0" @@ -4055,14 +4294,14 @@ reactstrap@^9.1.6: read-cache@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== dependencies: pify "^2.3.0" readable-stream@^2.0.2: version "2.3.8" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" @@ -4075,7 +4314,7 @@ readable-stream@^2.0.2: readable-stream@~1.0.17, readable-stream@~1.0.27-1: version "1.0.34" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" integrity sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg== dependencies: core-util-is "~1.0.0" @@ -4085,378 +4324,480 @@ readable-stream@~1.0.17, readable-stream@~1.0.27-1: readdirp@~3.6.0: version "3.6.0" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: picomatch "^2.2.1" redux@^4.0.0, redux@^4.0.4: version "4.2.1" - resolved "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.1.tgz#c08f4306826c49b5e9dc901dee0452ea8fce6197" integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== dependencies: "@babel/runtime" "^7.9.2" -regenerator-runtime@^0.13.11: - version "0.13.11" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== +reflect.getprototypeof@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz#e0bd28b597518f16edaf9c0e292c631eb13e0674" + integrity sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.0.0" + get-intrinsic "^1.2.3" + globalthis "^1.0.3" + which-builtin-type "^1.1.3" -regexp.prototype.flags@^1.4.3: - version "1.4.3" - resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz" - integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - functions-have-names "^1.2.2" +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== -regexpp@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== +regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" + integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + dependencies: + call-bind "^1.0.6" + define-properties "^1.2.1" + es-errors "^1.3.0" + set-function-name "^2.0.1" requires-port@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== resolve-from@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== -resolve@^1.1.7, resolve@^1.19.0, resolve@^1.22.1: - version "1.22.1" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + +resolve@^1.1.7, resolve@^1.19.0, resolve@^1.22.2, resolve@^1.22.4: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: - is-core-module "^2.9.0" + is-core-module "^2.13.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" resolve@^2.0.0-next.4: - version "2.0.0-next.4" - resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz" - integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== + version "2.0.0-next.5" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" + integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== dependencies: - is-core-module "^2.9.0" + is-core-module "^2.13.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" reusify@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" +rrweb-cssom@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz#ed298055b97cbddcdeb278f904857629dec5e0e1" + integrity sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw== + run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" +safe-array-concat@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.0.tgz#8d0cae9cb806d6d1c06e08ab13d847293ebe0692" + integrity sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg== + dependencies: + call-bind "^1.0.5" + get-intrinsic "^1.2.2" + has-symbols "^1.0.3" + isarray "^2.0.5" + safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-regex-test@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz" - integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== +safe-regex-test@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" + call-bind "^1.0.6" + es-errors "^1.3.0" is-regex "^1.1.4" "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== saxes@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5" integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== dependencies: xmlchars "^2.2.0" scheduler@^0.23.0: version "0.23.0" - resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== dependencies: loose-envify "^1.1.0" -semver@^6.3.0: - version "6.3.0" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.7: - version "7.3.8" - resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz" - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== +semver@^7.5.4: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== dependencies: lru-cache "^6.0.0" +set-function-length@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.1.tgz#47cc5945f2c771e2cf261c6737cf9684a2a5e425" + integrity sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g== + dependencies: + define-data-property "^1.1.2" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.3" + gopd "^1.0.1" + has-property-descriptors "^1.0.1" + +set-function-name@^2.0.0, set-function-name@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a" + integrity sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA== + dependencies: + define-data-property "^1.0.1" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.0" + shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + version "1.0.5" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.5.tgz#9a84546599b48909fb6af1211708d23b1946221b" + integrity sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ== dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" + call-bind "^1.0.6" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" sift@16.0.1: version "16.0.1" - resolved "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz" + resolved "https://registry.yarnpkg.com/sift/-/sift-16.0.1.tgz#e9c2ccc72191585008cf3e36fc447b2d2633a053" integrity sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ== +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + slash@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slash@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" - integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== - smart-buffer@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== socks@^2.7.1: - version "2.7.1" - resolved "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + version "2.7.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.3.tgz#7d8a75d7ce845c0a96f710917174dba0d543a785" + integrity sha512-vfuYK48HXCTFD03G/1/zkIls3Ebr2YNa4qU9gHDZdblHLiqhJrJGkY3+0Nx0JpN9qBhJbVObc1CNciT1bIZJxw== dependencies: - ip "^2.0.0" + ip-address "^9.0.5" smart-buffer "^4.2.0" source-map-js@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== source-map@^0.5.7: version "0.5.7" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== source-map@~0.6.1: version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== sparse-bitfield@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz#ff4ae6e68656056ba4b3e792ab3334d38273ca11" integrity sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ== dependencies: memory-pager "^1.0.2" -stop-iteration-iterator@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz" - integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== +sprintf-js@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== + +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: - internal-slot "^1.0.4" + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" string.prototype.matchall@^4.0.8: - version "4.0.8" - resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz" - integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== + version "4.0.10" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz#a1553eb532221d4180c51581d6072cd65d1ee100" + integrity sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - get-intrinsic "^1.1.3" + define-properties "^1.2.0" + es-abstract "^1.22.1" + get-intrinsic "^1.2.1" has-symbols "^1.0.3" - internal-slot "^1.0.3" - regexp.prototype.flags "^1.4.3" + internal-slot "^1.0.5" + regexp.prototype.flags "^1.5.0" + set-function-name "^2.0.0" side-channel "^1.0.4" -string.prototype.trimend@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz" - integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== +string.prototype.trim@^1.2.8: + version "1.2.8" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd" + integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" -string.prototype.trimstart@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz" - integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== +string.prototype.trimend@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e" + integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + +string.prototype.trimstart@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298" + integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg== dependencies: call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" + define-properties "^1.2.0" + es-abstract "^1.22.1" string_decoder@~0.10.x: version "0.10.31" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" -strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" +strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + strip-bom@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== style-to-js@1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/style-to-js/-/style-to-js-1.1.0.tgz#631cbb20fce204019b3aa1fcb5b69d951ceac4ac" integrity sha512-1OqefPDxGrlMwcbfpsTVRyzwdhr4W0uxYQzeA2F1CBc8WG04udg2+ybRnvh3XYL4TdHQrCahLtax2jc8xaE6rA== dependencies: style-to-object "0.3.0" style-to-object@0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz" + resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46" integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== dependencies: inline-style-parser "0.1.1" styled-jsx@5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== dependencies: client-only "0.0.1" -stylis@4.1.3: - version "4.1.3" - resolved "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz" - integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA== - stylis@4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== +sucrase@^3.32.0: + version "3.35.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" + integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "^10.3.10" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + supports-color@^5.3.0: version "5.5.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== symbol-tree@^3.2.4: version "3.2.4" - resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== -synckit@^0.8.4: - version "0.8.5" - resolved "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz" - integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== - dependencies: - "@pkgr/utils" "^2.3.1" - tslib "^2.5.0" - tabbable@^6.0.1: - version "6.1.1" - resolved "https://registry.npmjs.org/tabbable/-/tabbable-6.1.1.tgz" - integrity sha512-4kl5w+nCB44EVRdO0g/UGoOp3vlwgycUVtkk/7DPyeLZUCuNFFKCFG6/t/DgHLrUPHjrZg6s5tNm+56Q2B0xyg== + version "6.2.0" + resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" + integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== tailwindcss@^3.2.4: - version "3.2.4" - resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz" - integrity sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ== + version "3.4.1" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.1.tgz#f512ca5d1dd4c9503c7d3d28a968f1ad8f5c839d" + integrity sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA== dependencies: + "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" chokidar "^3.5.3" - color-name "^1.1.4" - detective "^5.2.1" didyoumean "^1.2.2" dlv "^1.1.3" - fast-glob "^3.2.12" + fast-glob "^3.3.0" glob-parent "^6.0.2" is-glob "^4.0.3" - lilconfig "^2.0.6" + jiti "^1.19.1" + lilconfig "^2.1.0" micromatch "^4.0.5" normalize-path "^3.0.0" object-hash "^3.0.0" picocolors "^1.0.0" - postcss "^8.4.18" - postcss-import "^14.1.0" - postcss-js "^4.0.0" - postcss-load-config "^3.1.4" - postcss-nested "6.0.0" - postcss-selector-parser "^6.0.10" - postcss-value-parser "^4.2.0" - quick-lru "^5.1.1" - resolve "^1.22.1" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" tapable@^2.2.0: version "2.2.1" - resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== text-table@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + through2@~0.4.1: version "0.4.2" - resolved "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz" + resolved "https://registry.yarnpkg.com/through2/-/through2-0.4.2.tgz#dbf5866031151ec8352bb6c4db64a2292a840b9b" integrity sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ== dependencies: readable-stream "~1.0.17" @@ -4464,43 +4805,35 @@ through2@~0.4.1: through@^2.3.8: version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== -tiny-glob@^0.2.9: - version "0.2.9" - resolved "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz" - integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== - dependencies: - globalyzer "0.1.0" - globrex "^0.1.2" - tiny-invariant@^1.0.6: version "1.3.1" - resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642" integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" toggle-selection@^1.0.6: version "1.0.6" - resolved "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" integrity sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ== tough-cookie@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz" - integrity sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ== + version "4.1.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" + integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== dependencies: psl "^1.1.33" punycode "^2.1.1" @@ -4509,65 +4842,93 @@ tough-cookie@^4.1.2: tr46@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA== dependencies: punycode "^2.1.1" -tsconfig-paths@^3.14.1: - version "3.14.1" - resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz" - integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== +tr46@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-4.1.1.tgz#281a758dcc82aeb4fe38c7dfe4d11a395aac8469" + integrity sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw== + dependencies: + punycode "^2.3.0" + +ts-api-utils@^1.0.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.2.1.tgz#f716c7e027494629485b21c0df6180f4d08f5e8b" + integrity sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA== + +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + +tsconfig-paths@^3.15.0: + version "3.15.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4" + integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== dependencies: "@types/json5" "^0.0.29" - json5 "^1.0.1" + json5 "^1.0.2" minimist "^1.2.6" strip-bom "^3.0.0" tslib@2.4.0: version "2.4.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== -tslib@^1.8.1: - version "1.14.1" - resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0, tslib@^2.5.0: - version "2.5.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz" - integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== - -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" +tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== dependencies: prelude-ls "^1.2.1" -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - type-fest@^0.20.2: version "0.20.2" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +typed-array-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz#0608ffe6bca71bf15a45bff0ca2604107a1325f5" + integrity sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-typed-array "^1.1.13" + +typed-array-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" + integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" + integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + typed-array-length@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== dependencies: call-bind "^1.0.2" @@ -4576,12 +4937,12 @@ typed-array-length@^1.0.4: typescript@4.9.5: version "4.9.5" - resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== unbox-primitive@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== dependencies: call-bind "^1.0.2" @@ -4589,66 +4950,71 @@ unbox-primitive@^1.0.2: has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + universalify@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== -update-browserslist-db@^1.0.10: - version "1.0.10" - resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz" - integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== +update-browserslist-db@^1.0.13: + version "1.0.13" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== dependencies: escalade "^3.1.1" picocolors "^1.0.0" uri-js@^4.2.2: version "4.4.1" - resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" url-parse@^1.5.3: version "1.5.10" - resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== dependencies: querystringify "^2.1.1" requires-port "^1.0.0" use-callback-ref@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.0.tgz" - integrity sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w== + version "1.3.1" + resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.1.tgz#9be64c3902cbd72b07fe55e56408ae3a26036fd0" + integrity sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ== dependencies: tslib "^2.0.0" use-composed-ref@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.3.0.tgz#3d8104db34b7b264030a9d916c5e94fbe280dbda" integrity sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ== use-isomorphic-layout-effect@^1.1.1: version "1.1.2" - resolved "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb" integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== use-latest@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.2.1.tgz#d13dfb4b08c28e3e33991546a2cee53e14038cf2" integrity sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw== dependencies: use-isomorphic-layout-effect "^1.1.1" use-memo-one@^1.1.1: version "1.1.3" - resolved "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz" + resolved "https://registry.yarnpkg.com/use-memo-one/-/use-memo-one-1.1.3.tgz#2fd2e43a2169eabc7496960ace8c79efef975e99" integrity sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ== use-sidecar@^1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.2.tgz#2f43126ba2d7d7e117aa5855e5d8f0276dfe73c2" integrity sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw== dependencies: detect-node-es "^1.1.0" @@ -4656,51 +5022,67 @@ use-sidecar@^1.1.2: util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== w3c-xmlserializer@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== dependencies: xml-name-validator "^4.0.0" warning@^4.0.2, warning@^4.0.3: version "4.0.3" - resolved "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== dependencies: loose-envify "^1.0.0" webidl-conversions@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== whatwg-encoding@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== dependencies: iconv-lite "0.6.3" whatwg-mimetype@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== whatwg-url@^11.0.0: version "11.0.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018" integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== dependencies: tr46 "^3.0.0" webidl-conversions "^7.0.0" +whatwg-url@^12.0.0, whatwg-url@^12.0.1: + version "12.0.1" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-12.0.1.tgz#fd7bcc71192e7c3a2a97b9a8d6b094853ed8773c" + integrity sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ== + dependencies: + tr46 "^4.1.1" + webidl-conversions "^7.0.0" + +whatwg-url@^13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-13.0.0.tgz#b7b536aca48306394a34e44bda8e99f332410f8f" + integrity sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig== + dependencies: + tr46 "^4.1.1" + webidl-conversions "^7.0.0" + which-boxed-primitive@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== dependencies: is-bigint "^1.0.1" @@ -4709,9 +5091,27 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" +which-builtin-type@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" + integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== + dependencies: + function.prototype.name "^1.1.5" + has-tostringtag "^1.0.0" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.0.2" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + which-collection@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== dependencies: is-map "^2.0.1" @@ -4719,73 +5119,85 @@ which-collection@^1.0.1: is-weakmap "^2.0.1" is-weakset "^2.0.1" -which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== +which-typed-array@^1.1.14, which-typed-array@^1.1.9: + version "1.1.14" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.14.tgz#1f78a111aee1e131ca66164d8bdc3ab062c95a06" + integrity sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg== dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" + available-typed-arrays "^1.0.6" + call-bind "^1.0.5" for-each "^0.3.3" gopd "^1.0.1" - has-tostringtag "^1.0.0" - is-typed-array "^1.1.10" + has-tostringtag "^1.0.1" which@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" -word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" wrappy@1: version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -ws@^8.11.0: - version "8.12.1" - resolved "https://registry.npmjs.org/ws/-/ws-8.12.1.tgz" - integrity sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew== +ws@^8.13.0: + version "8.16.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4" + integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== xml-name-validator@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== xmlchars@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== -xtend@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - xtend@~2.1.1: version "2.1.2" - resolved "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" integrity sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ== dependencies: object-keys "~0.4.0" yallist@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yaml@^1.10.0, yaml@^1.10.2: +yaml@^1.10.0: version "1.10.2" - resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== +yaml@^2.3.4: + version "2.3.4" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2" + integrity sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA== + yocto-queue@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== From a72e501640f9bc265ed277e7a69ffe43868b8765 Mon Sep 17 00:00:00 2001 From: Kapil Garg Date: Wed, 14 Feb 2024 16:47:06 -0600 Subject: [PATCH 062/111] specifying engine for digital ocean; updating packages --- package.json | 67 ++++--- yarn.lock | 547 ++++++++++++++------------------------------------- 2 files changed, 180 insertions(+), 434 deletions(-) diff --git a/package.json b/package.json index 689aff2..7efcf40 100644 --- a/package.json +++ b/package.json @@ -1,54 +1,57 @@ { "private": true, + "engine": { + "node": "20.x" + }, "scripts": { - "dev": "node app.js", + "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint" }, "dependencies": { - "@chakra-ui/react": "^2.6.1", - "@dnd-kit/core": "^6.0.8", - "@dnd-kit/sortable": "^7.0.2", - "@dnd-kit/utilities": "^3.2.1", - "@emotion/react": "^11.10.6", - "@emotion/server": "^11.10.0", + "@chakra-ui/react": "^2.8.2", + "@dnd-kit/core": "^6.1.0", + "@dnd-kit/sortable": "^8.0.0", + "@dnd-kit/utilities": "^3.2.2", + "@emotion/react": "^11.11.3", + "@emotion/server": "^11.11.0", "@emotion/styled": "^11.11.0", - "@mantine/carousel": "^6.0.0", - "@mantine/core": "^6.0.0", - "@mantine/hooks": "^6.0.0", - "@mantine/next": "^6.0.0", + "@mantine/carousel": "^7.5.2", + "@mantine/core": "^7.5.2", + "@mantine/hooks": "^7.5.2", + "@mantine/next": "^6.0.21", "@vygruppen/spor-accordion-react": "^1.0.1", - "blockly": "^9.2.1", - "dotenv": "^16.3.1", - "embla-carousel-react": "^7.0.9", - "framer-motion": "^10.12.10", + "blockly": "^10.3.1", + "dotenv": "^16.4.4", + "embla-carousel-react": "^7.1.0", + "framer-motion": "^11.0.5", "mongo": "^0.1.0", - "mongoose": "^7.1.1", + "mongoose": "^8.1.2", "next": "latest", - "p5": "^1.8.0", + "p5": "^1.9.0", "react": "18.2.0", "react-beautiful-dnd": "^13.1.1", - "react-blockly": "^7.0.1", + "react-blockly": "^8.1.1", "react-dom": "18.2.0", "react-modal": "^3.16.1", "react-sortable-hoc": "^2.0.0", - "reactstrap": "^9.1.6" + "reactstrap": "^9.2.2" }, "devDependencies": { - "@types/node": "18.13.0", - "@types/p5": "^1.7.3", - "@types/react": "18.0.27", - "@types/react-beautiful-dnd": "^13.1.4", - "@types/react-dom": "18.0.10", - "autoprefixer": "^10.4.13", - "eslint": "^8.33.0", - "eslint-config-next": "^13.1.6", - "eslint-config-prettier": "^8.6.0", - "postcss": "^8.4.21", - "prettier": "^2.8.4", - "tailwindcss": "^3.2.4", - "typescript": "4.9.5" + "@types/node": "20.11.17", + "@types/p5": "^1.7.6", + "@types/react": "18.2.55", + "@types/react-beautiful-dnd": "^13.1.8", + "@types/react-dom": "18.2.19", + "autoprefixer": "^10.4.17", + "eslint": "^8.56.0", + "eslint-config-next": "^14.1.0", + "eslint-config-prettier": "^9.1.0", + "postcss": "^8.4.35", + "prettier": "^3.2.5", + "tailwindcss": "^3.4.1", + "typescript": "5.3.3" } } \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index af537bc..02c115c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -46,7 +46,7 @@ chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.20.13", "@babel/runtime@^7.23.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": version "7.23.9" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.9.tgz#47791a15e4603bb5f905bc0753801cf21d6345f7" integrity sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw== @@ -593,7 +593,7 @@ dependencies: "@chakra-ui/utils" "2.0.15" -"@chakra-ui/react@^2.6.1": +"@chakra-ui/react@^2.8.2": version "2.8.2" resolved "https://registry.yarnpkg.com/@chakra-ui/react/-/react-2.8.2.tgz#94d692fb35e4447748c5bfd73d8d38a746193c7d" integrity sha512-Hn0moyxxyCDKuR9ywYpqgX8dvjqwu9ArwpIb9wHNYjnODETjLwazgNIliCVBRcJvysGRiV51U2/JtJVrpeCjUQ== @@ -875,7 +875,7 @@ dependencies: tslib "^2.0.0" -"@dnd-kit/core@^6.0.8": +"@dnd-kit/core@^6.1.0": version "6.1.0" resolved "https://registry.yarnpkg.com/@dnd-kit/core/-/core-6.1.0.tgz#e81a3d10d9eca5d3b01cbf054171273a3fe01def" integrity sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg== @@ -884,15 +884,15 @@ "@dnd-kit/utilities" "^3.2.2" tslib "^2.0.0" -"@dnd-kit/sortable@^7.0.2": - version "7.0.2" - resolved "https://registry.yarnpkg.com/@dnd-kit/sortable/-/sortable-7.0.2.tgz#791d550872457f3f3c843e00d159b640f982011c" - integrity sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA== +"@dnd-kit/sortable@^8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@dnd-kit/sortable/-/sortable-8.0.0.tgz#086b7ac6723d4618a4ccb6f0227406d8a8862a96" + integrity sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g== dependencies: - "@dnd-kit/utilities" "^3.2.0" + "@dnd-kit/utilities" "^3.2.2" tslib "^2.0.0" -"@dnd-kit/utilities@^3.2.0", "@dnd-kit/utilities@^3.2.1", "@dnd-kit/utilities@^3.2.2": +"@dnd-kit/utilities@^3.2.2": version "3.2.2" resolved "https://registry.yarnpkg.com/@dnd-kit/utilities/-/utilities-3.2.2.tgz#5a32b6af356dc5f74d61b37d6f7129a4040ced7b" integrity sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg== @@ -956,7 +956,7 @@ resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== -"@emotion/react@^11.10.6": +"@emotion/react@^11.11.3": version "11.11.3" resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.3.tgz#96b855dc40a2a55f52a72f518a41db4f69c31a25" integrity sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA== @@ -981,7 +981,7 @@ "@emotion/utils" "^1.2.1" csstype "^3.0.2" -"@emotion/server@^11.10.0": +"@emotion/server@^11.11.0": version "11.11.0" resolved "https://registry.yarnpkg.com/@emotion/server/-/server-11.11.0.tgz#35537176a2a5ed8aed7801f254828e636ec3bd6e" integrity sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA== @@ -1067,7 +1067,7 @@ dependencies: "@floating-ui/utils" "^0.2.1" -"@floating-ui/dom@^1.2.1": +"@floating-ui/dom@^1.6.1": version "1.6.3" resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.3.tgz#954e46c1dd3ad48e49db9ada7218b0985cee75ef" integrity sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw== @@ -1075,20 +1075,20 @@ "@floating-ui/core" "^1.0.0" "@floating-ui/utils" "^0.2.0" -"@floating-ui/react-dom@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-1.3.0.tgz#4d35d416eb19811c2b0e9271100a6aa18c1579b3" - integrity sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g== +"@floating-ui/react-dom@^2.0.1": + version "2.0.8" + resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.0.8.tgz#afc24f9756d1b433e1fe0d047c24bd4d9cefaa5d" + integrity sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw== dependencies: - "@floating-ui/dom" "^1.2.1" + "@floating-ui/dom" "^1.6.1" -"@floating-ui/react@^0.19.1": - version "0.19.2" - resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.19.2.tgz#c6e4d2097ed0dca665a7c042ddf9cdecc95e9412" - integrity sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w== +"@floating-ui/react@^0.24.8": + version "0.24.8" + resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.24.8.tgz#e079e2836990be3fce9665ab509360a5447251a1" + integrity sha512-AuYeDoaR8jtUlUXtZ1IJ/6jtBkGnSpJXbGNzokBL87VDJ8opMq1Bgrc0szhK482ReQY6KZsMoZCVSb4xwalkBA== dependencies: - "@floating-ui/react-dom" "^1.3.0" - aria-hidden "^1.1.3" + "@floating-ui/react-dom" "^2.0.1" + aria-hidden "^1.2.3" tabbable "^6.0.1" "@floating-ui/utils@^0.2.0", "@floating-ui/utils@^0.2.1": @@ -1137,9 +1137,9 @@ "@jridgewell/trace-mapping" "^0.3.9" "@jridgewell/resolve-uri@^3.1.0": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== "@jridgewell/set-array@^1.0.1": version "1.1.2" @@ -1159,31 +1159,29 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@mantine/carousel@^6.0.0": - version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/carousel/-/carousel-6.0.21.tgz#3e2a77e365014b314f90e8b474b350432c926640" - integrity sha512-cQAQ5RlVhSrYA8aez/euzs5nQKcGcwxVTS/gf46GEZ0gcDJXlymZPbc2OopH/WDczEaMWOF7wz8R9+uG1hYNCg== - dependencies: - "@mantine/utils" "6.0.21" - -"@mantine/core@^6.0.0": - version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/core/-/core-6.0.21.tgz#6e3a1b8d0f6869518a644d5f5e3d55a5db7e1e51" - integrity sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg== - dependencies: - "@floating-ui/react" "^0.19.1" - "@mantine/styles" "6.0.21" - "@mantine/utils" "6.0.21" - "@radix-ui/react-scroll-area" "1.0.2" - react-remove-scroll "^2.5.5" - react-textarea-autosize "8.3.4" - -"@mantine/hooks@^6.0.0": - version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/hooks/-/hooks-6.0.21.tgz#bc009d8380ad18455b90f3ddaf484de16a13da95" - integrity sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew== - -"@mantine/next@^6.0.0": +"@mantine/carousel@^7.5.2": + version "7.5.2" + resolved "https://registry.yarnpkg.com/@mantine/carousel/-/carousel-7.5.2.tgz#43bc1ab9939112465202a9cf608cfe6dad3bc468" + integrity sha512-9LBnsETBcT3Wr5jGPUpTBirYMD/EyFvYaBolSSUDJKxXxcmSAnjZWT7mvhTC5oU0mOrUlgLoo2IBJGwL0OY0DQ== + +"@mantine/core@^7.5.2": + version "7.5.2" + resolved "https://registry.yarnpkg.com/@mantine/core/-/core-7.5.2.tgz#c9bb809f1b0ccb212a609f30b0829d28e3584fbe" + integrity sha512-e58qTiLEp9qLxQ5JZlPNykJWBR+oi0q2J8JPKTjTJD+4UM58uh9oL4wuMEdUyBgiYGvDc/cVYF+rftMpuCt+KQ== + dependencies: + "@floating-ui/react" "^0.24.8" + clsx "2.0.0" + react-number-format "^5.3.1" + react-remove-scroll "^2.5.7" + react-textarea-autosize "8.5.3" + type-fest "^3.13.1" + +"@mantine/hooks@^7.5.2": + version "7.5.2" + resolved "https://registry.yarnpkg.com/@mantine/hooks/-/hooks-7.5.2.tgz#cd11e379438f707e10e7e061cc14b9ae2233ec8e" + integrity sha512-4POujH5Xx84VB/xfM6EttDq725dqqL2DntoeMjHz3Ua94aK5Y0VSc1IwlETxCuF7yNV5/w/Z8kgeVVa5cDgrPg== + +"@mantine/next@^6.0.21": version "6.0.21" resolved "https://registry.yarnpkg.com/@mantine/next/-/next-6.0.21.tgz#22e3c9a7e43f3efaa865b3490961f700a85d66fe" integrity sha512-McaVZZsmUol3yY92mSJSgcMQKFST97pVxNtI7Z52YocyuTjPPFXmqxF/TFj24A7noh1wzvRCPjfd9HX66sY+iQ== @@ -1207,11 +1205,6 @@ clsx "1.1.1" csstype "3.0.9" -"@mantine/utils@6.0.21": - version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/utils/-/utils-6.0.21.tgz#6185506e91cba3e308aaa8ea9ababc8e767995d6" - integrity sha512-33RVDRop5jiWFao3HKd3Yp7A9mEq4HAJxJPTuYm1NkdqX6aTKOQK7wT8v8itVodBp+sb4cJK6ZVdD1UurK/txQ== - "@mongodb-js/saslprep@^1.1.0": version "1.1.4" resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.1.4.tgz#24ec1c4915a65f5c506bb88c081731450d91bb1c" @@ -1224,12 +1217,12 @@ resolved "https://registry.yarnpkg.com/@next/env/-/env-14.1.0.tgz#43d92ebb53bc0ae43dcc64fb4d418f8f17d7a341" integrity sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw== -"@next/eslint-plugin-next@13.5.6": - version "13.5.6" - resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.5.6.tgz#cf279b94ddc7de49af8e8957f0c3b7349bc489bf" - integrity sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg== +"@next/eslint-plugin-next@14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.0.tgz#29b041233fac7417e22eefa4146432d5cd910820" + integrity sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q== dependencies: - glob "7.1.7" + glob "10.3.10" "@next/swc-darwin-arm64@14.1.0": version "14.1.0" @@ -1307,96 +1300,6 @@ resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== -"@radix-ui/number@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/number/-/number-1.0.0.tgz#4c536161d0de750b3f5d55860fc3de46264f897b" - integrity sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/primitive@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.0.tgz#e1d8ef30b10ea10e69c76e896f608d9276352253" - integrity sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-compose-refs@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz#37595b1f16ec7f228d698590e78eeed18ff218ae" - integrity sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-context@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.0.tgz#f38e30c5859a9fb5e9aa9a9da452ee3ed9e0aee0" - integrity sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-direction@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.0.0.tgz#a2e0b552352459ecf96342c79949dd833c1e6e45" - integrity sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-presence@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.0.0.tgz#814fe46df11f9a468808a6010e3f3ca7e0b2e84a" - integrity sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/react-compose-refs" "1.0.0" - "@radix-ui/react-use-layout-effect" "1.0.0" - -"@radix-ui/react-primitive@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz#c1ebcce283dd2f02e4fbefdaa49d1cb13dbc990a" - integrity sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/react-slot" "1.0.1" - -"@radix-ui/react-scroll-area@1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz#26c906d351b56835c0301126b24574c9e9c7b93b" - integrity sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/number" "1.0.0" - "@radix-ui/primitive" "1.0.0" - "@radix-ui/react-compose-refs" "1.0.0" - "@radix-ui/react-context" "1.0.0" - "@radix-ui/react-direction" "1.0.0" - "@radix-ui/react-presence" "1.0.0" - "@radix-ui/react-primitive" "1.0.1" - "@radix-ui/react-use-callback-ref" "1.0.0" - "@radix-ui/react-use-layout-effect" "1.0.0" - -"@radix-ui/react-slot@1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.1.tgz#e7868c669c974d649070e9ecbec0b367ee0b4d81" - integrity sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw== - dependencies: - "@babel/runtime" "^7.13.10" - "@radix-ui/react-compose-refs" "1.0.0" - -"@radix-ui/react-use-callback-ref@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz#9e7b8b6b4946fe3cbe8f748c82a2cce54e7b6a90" - integrity sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg== - dependencies: - "@babel/runtime" "^7.13.10" - -"@radix-ui/react-use-layout-effect@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz#2fc19e97223a81de64cd3ba1dc42ceffd82374dc" - integrity sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ== - dependencies: - "@babel/runtime" "^7.13.10" - "@rushstack/eslint-patch@^1.3.3": version "1.7.2" resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz#2d4260033e199b3032a08b41348ac10de21c47e9" @@ -1439,19 +1342,14 @@ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.202.tgz#f09dbd2fb082d507178b2f2a5c7e74bd72ff98f8" integrity sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ== -"@types/node@*": +"@types/node@20.11.17": version "20.11.17" resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.17.tgz#cdd642d0e62ef3a861f88ddbc2b61e32578a9292" integrity sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw== dependencies: undici-types "~5.26.4" -"@types/node@18.13.0": - version "18.13.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.13.0.tgz#0400d1e6ce87e9d3032c19eb6c58205b0d3f7850" - integrity sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg== - -"@types/p5@^1.7.3": +"@types/p5@^1.7.6": version "1.7.6" resolved "https://registry.yarnpkg.com/@types/p5/-/p5-1.7.6.tgz#f2ec2bb3cddaa40922afa5bb54b7903ce7e509ed" integrity sha512-6pLTOo0V3N5jZb5nTwjiv3lPHLK3Z/TjbhQUj8CTWXocUk1Z/f6OHTp3Pcwi1BhWnf5gqKUcyEb1gP0KIJuQgw== @@ -1466,17 +1364,17 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.11.tgz#2596fb352ee96a1379c657734d4b913a613ad563" integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== -"@types/react-beautiful-dnd@^13.1.4": +"@types/react-beautiful-dnd@^13.1.8": version "13.1.8" resolved "https://registry.yarnpkg.com/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.8.tgz#f52d3ea07e1e19159d6c3c4a48c8da3d855e60b4" integrity sha512-E3TyFsro9pQuK4r8S/OL6G99eq7p8v29sX0PM7oT8Z+PJfZvSQTx4zTQbUJ+QZXioAF0e7TGBEcA1XhYhCweyQ== dependencies: "@types/react" "*" -"@types/react-dom@18.0.10": - version "18.0.10" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.10.tgz#3b66dec56aa0f16a6cc26da9e9ca96c35c0b4352" - integrity sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg== +"@types/react-dom@18.2.19": + version "18.2.19" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.19.tgz#b84b7c30c635a6c26c6a6dfbb599b2da9788be58" + integrity sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA== dependencies: "@types/react" "*" @@ -1490,7 +1388,7 @@ hoist-non-react-statics "^3.3.0" redux "^4.0.0" -"@types/react@*": +"@types/react@*", "@types/react@18.2.55": version "18.2.55" resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.55.tgz#38141821b7084404b5013742bc4ae08e44da7a67" integrity sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA== @@ -1499,15 +1397,6 @@ "@types/scheduler" "*" csstype "^3.0.2" -"@types/react@18.0.27": - version "18.0.27" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.27.tgz#d9425abe187a00f8a5ec182b010d4fd9da703b71" - integrity sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - "@types/scheduler@*": version "0.16.8" resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.8.tgz#ce5ace04cfeabe7ef87c0091e50752e36707deff" @@ -1525,14 +1414,6 @@ dependencies: "@types/webidl-conversions" "*" -"@types/whatwg-url@^8.2.1": - version "8.2.2" - resolved "https://registry.yarnpkg.com/@types/whatwg-url/-/whatwg-url-8.2.2.tgz#749d5b3873e845897ada99be4448041d4cc39e63" - integrity sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA== - dependencies: - "@types/node" "*" - "@types/webidl-conversions" "*" - "@typescript-eslint/parser@^5.4.2 || ^6.0.0": version "6.21.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b" @@ -1611,25 +1492,12 @@ abab@^2.0.6: resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== -acorn-globals@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3" - integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q== - dependencies: - acorn "^8.1.0" - acorn-walk "^8.0.2" - acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn-walk@^8.0.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa" - integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A== - -acorn@^8.1.0, acorn@^8.8.2, acorn@^8.9.0: +acorn@^8.9.0: version "8.11.3" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== @@ -1703,7 +1571,7 @@ argparse@^2.0.1: resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-hidden@^1.1.3, aria-hidden@^1.2.3: +aria-hidden@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.3.tgz#14aeb7fb692bbb72d69bebfa47279c1fd725e954" integrity sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ== @@ -1825,7 +1693,7 @@ asynckit@^0.4.0: resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== -autoprefixer@^10.4.13: +autoprefixer@^10.4.17: version "10.4.17" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.17.tgz#35cd5695cbbe82f536a50fa025d561b01fdec8be" integrity sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg== @@ -1873,20 +1741,13 @@ binary-extensions@^2.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== -"blockly@>= 3.20200024.0": +"blockly@>= 10.0.0", blockly@^10.3.1: version "10.3.1" resolved "https://registry.yarnpkg.com/blockly/-/blockly-10.3.1.tgz#7ea198a6499d474a0f231e89d0445511ec707612" integrity sha512-EuHeCtcFJgTjHRktIL9I9S6/Dnd+AnjkSzMf79sQMrH47pZYSWGC2SZlgHIJve2JnY79D1W9ijMgjEyrgtbFnA== dependencies: jsdom "22.1.0" -blockly@^9.2.1: - version "9.3.3" - resolved "https://registry.yarnpkg.com/blockly/-/blockly-9.3.3.tgz#5871b4fb1c709ef2639b17a0be0d63367a4f5915" - integrity sha512-L7LlrGXICEN+UaZsYq3Iz2/SF8uF2ks90ozwVXTkpueCpuo/Xt9eu4Skci6b1JUL7alMPPgt+AxIuq+2/p99Cg== - dependencies: - jsdom "21.1.1" - brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -1910,20 +1771,15 @@ braces@^3.0.2, braces@~3.0.2: fill-range "^7.0.1" browserslist@^4.22.2: - version "4.22.3" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.3.tgz#299d11b7e947a6b843981392721169e27d60c5a6" - integrity sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A== + version "4.23.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" + integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== dependencies: - caniuse-lite "^1.0.30001580" - electron-to-chromium "^1.4.648" + caniuse-lite "^1.0.30001587" + electron-to-chromium "^1.4.668" node-releases "^2.0.14" update-browserslist-db "^1.0.13" -bson@^5.5.0: - version "5.5.1" - resolved "https://registry.yarnpkg.com/bson/-/bson-5.5.1.tgz#f5849d405711a7f23acdda9a442375df858e6833" - integrity sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g== - bson@^6.2.0: version "6.3.0" resolved "https://registry.yarnpkg.com/bson/-/bson-6.3.0.tgz#d47acba525ba7d7eb0e816c10538bce26a337fe0" @@ -1962,7 +1818,7 @@ camelcase-css@^2.0.1: resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== -caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001579, caniuse-lite@^1.0.30001580: +caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001579, caniuse-lite@^1.0.30001587: version "1.0.30001587" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz#a0bce920155fa56a1885a69c74e1163fc34b4881" integrity sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA== @@ -2014,6 +1870,11 @@ clsx@1.1.1: resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== +clsx@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.0.0.tgz#12658f3fd98fafe62075595a5c30e43d18f3d00b" + integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== + color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -2278,7 +2139,7 @@ domutils@^2.8.0: domelementtype "^2.2.0" domhandler "^4.2.0" -dotenv@^16.3.1: +dotenv@^16.4.4: version "16.4.4" resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.4.tgz#a26e7bb95ebd36272ebb56edb80b826aecf224c1" integrity sha512-XvPXc8XAQThSjAbY6cQ/9PcBXmFoWuw1sQ3b8HqUCR6ziGXjkTi//kB9SWa2UwqlgdAIuRqAa/9hVljzPehbYg== @@ -2295,12 +2156,12 @@ eastasianwidth@^0.2.0: resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== -electron-to-chromium@^1.4.648: - version "1.4.668" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.668.tgz#5cfed14f3240cdc70a359a49790cb295b1f097f1" - integrity sha512-ZOBocMYCehr9W31+GpMclR+KBaDZOoAEabLdhpZ8oU1JFDwIaFY0UDbpXVEUFc0BIP2O2Qn3rkfCjQmMR4T/bQ== +electron-to-chromium@^1.4.668: + version "1.4.669" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.669.tgz#37e9cc16cc2fbdd8e06a46fc1fd3a1249e091f64" + integrity sha512-E2SmpffFPrZhBSgf8ibqanRS2mpuk3FIRDzLDwt7WFpfgJMKDHJs0hmacyP0PS1cWsq0dVkwIIzlscNaterkPg== -embla-carousel-react@^7.0.9: +embla-carousel-react@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/embla-carousel-react/-/embla-carousel-react-7.1.0.tgz#e716f4df7fd31f7ca3e59a3e011158167bc3c468" integrity sha512-tbYRPRZSDNd2QLNqYDcArAakGIxtUbhS7tkP0dGXktXHGgcX+3ji3VrOUTOftBiujZrMV8kRxtrRUe/1soloIQ== @@ -2477,23 +2338,12 @@ escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -escodegen@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" - integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== - dependencies: - esprima "^4.0.1" - estraverse "^5.2.0" - esutils "^2.0.2" - optionalDependencies: - source-map "~0.6.1" - -eslint-config-next@^13.1.6: - version "13.5.6" - resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.5.6.tgz#3a5a6222d5cb32256760ad68ab8e976e866a08c8" - integrity sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg== +eslint-config-next@^14.1.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-14.1.0.tgz#7e309d426b8afacaba3b32fdbb02ba220b6d0a97" + integrity sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg== dependencies: - "@next/eslint-plugin-next" "13.5.6" + "@next/eslint-plugin-next" "14.1.0" "@rushstack/eslint-patch" "^1.3.3" "@typescript-eslint/parser" "^5.4.2 || ^6.0.0" eslint-import-resolver-node "^0.3.6" @@ -2503,10 +2353,10 @@ eslint-config-next@^13.1.6: eslint-plugin-react "^7.33.2" eslint-plugin-react-hooks "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" -eslint-config-prettier@^8.6.0: - version "8.10.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11" - integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg== +eslint-config-prettier@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f" + integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.9: version "0.3.9" @@ -2622,7 +2472,7 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4 resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@^8.33.0: +eslint@^8.56.0: version "8.56.0" resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.56.0.tgz#4957ce8da409dc0809f99ab07a1b94832ab74b15" integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ== @@ -2675,11 +2525,6 @@ espree@^9.6.0, espree@^9.6.1: acorn-jsx "^5.3.2" eslint-visitor-keys "^3.4.1" -esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - esquery@^1.4.2: version "1.5.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" @@ -2819,10 +2664,10 @@ fraction.js@^4.3.7: resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== -framer-motion@^10.12.10: - version "10.18.0" - resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-10.18.0.tgz#1f4fc51403996ea7170af885bd44a7079d255950" - integrity sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w== +framer-motion@^11.0.5: + version "11.0.5" + resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-11.0.5.tgz#2ae1341d8605a01c50009d3bb195a67e4e2bfc69" + integrity sha512-Lb0EYbQcSK/pgyQUJm+KzsQrKrJRX9sFRyzl9hSr9gFG4Mk8yP7BjhuxvRXzblOM/+JxycrJdCDVmOQBsjpYlw== dependencies: tslib "^2.4.0" optionalDependencies: @@ -2911,19 +2756,7 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@7.1.7: - version "7.1.7" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^10.3.10: +glob@10.3.10, glob@^10.3.10: version "10.3.10" resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b" integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== @@ -3164,14 +2997,6 @@ invariant@^2.2.4: dependencies: loose-envify "^1.0.0" -ip-address@^9.0.5: - version "9.0.5" - resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" - integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== - dependencies: - jsbn "1.1.0" - sprintf-js "^1.1.3" - is-array-buffer@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" @@ -3414,43 +3239,6 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" -jsbn@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" - integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== - -jsdom@21.1.1: - version "21.1.1" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-21.1.1.tgz#ab796361e3f6c01bcfaeda1fea3c06197ac9d8ae" - integrity sha512-Jjgdmw48RKcdAIQyUD1UdBh2ecH7VqwaXPN3ehoZN6MqgVbMn+lRm1aAT1AsdJRAJpwfa4IpwgzySn61h2qu3w== - dependencies: - abab "^2.0.6" - acorn "^8.8.2" - acorn-globals "^7.0.0" - cssstyle "^3.0.0" - data-urls "^4.0.0" - decimal.js "^10.4.3" - domexception "^4.0.0" - escodegen "^2.0.0" - form-data "^4.0.0" - html-encoding-sniffer "^3.0.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.1" - is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.2" - parse5 "^7.1.2" - rrweb-cssom "^0.6.0" - saxes "^6.0.0" - symbol-tree "^3.2.4" - tough-cookie "^4.1.2" - w3c-xmlserializer "^4.0.0" - webidl-conversions "^7.0.0" - whatwg-encoding "^2.0.0" - whatwg-mimetype "^3.0.0" - whatwg-url "^12.0.1" - ws "^8.13.0" - xml-name-validator "^4.0.0" - jsdom@22.1.0: version "22.1.0" resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-22.1.0.tgz#0fca6d1a37fbeb7f4aac93d1090d782c56b611c8" @@ -3555,9 +3343,9 @@ lilconfig@^2.1.0: integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== lilconfig@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.0.0.tgz#f8067feb033b5b74dab4602a5f5029420be749bc" - integrity sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g== + version "3.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.0.tgz#aabf03fd46934d0566d75b4b64ce41a2cdea1167" + integrity sha512-p3cz0JV5vw/XeouBU3Ldnp+ZkBjE+n8ydJ4mcwBrOiXXPqNlrzGBqWs9X4MWF7f+iKUBu794Y8Hh8yawiJbCjw== lines-and-columns@^1.1.6: version "1.2.4" @@ -3642,7 +3430,7 @@ minimatch@9.0.3, minimatch@^9.0.1: dependencies: brace-expansion "^2.0.1" -minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: +minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -3666,14 +3454,6 @@ mongo@^0.1.0: dependencies: mongodb "*" -mongodb-connection-string-url@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz#57901bf352372abdde812c81be47b75c6b2ec5cf" - integrity sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ== - dependencies: - "@types/whatwg-url" "^8.2.1" - whatwg-url "^11.0.0" - mongodb-connection-string-url@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.0.tgz#b4f87f92fd8593f3b9365f592515a06d304a1e9c" @@ -3682,7 +3462,7 @@ mongodb-connection-string-url@^3.0.0: "@types/whatwg-url" "^11.0.2" whatwg-url "^13.0.0" -mongodb@*: +mongodb@*, mongodb@6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-6.3.0.tgz#ec9993b19f7ed2ea715b903fcac6171c9d1d38ca" integrity sha512-tt0KuGjGtLUhLoU263+xvQmPHEGTw5LbcNC73EoFRYgSHwZt5tsoJC110hDyO1kjQzpgNrpdcSza9PknWN4LrA== @@ -3691,25 +3471,14 @@ mongodb@*: bson "^6.2.0" mongodb-connection-string-url "^3.0.0" -mongodb@5.9.1: - version "5.9.1" - resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-5.9.1.tgz#da03ea253b0972bf8097301fa5f65e34acad18fa" - integrity sha512-NBGA8AfJxGPeB12F73xXwozt8ZpeIPmCUeWRwl9xejozTXFes/3zaep9zhzs1B/nKKsw4P3I4iPfXl3K7s6g+Q== +mongoose@^8.1.2: + version "8.1.2" + resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-8.1.2.tgz#f8a91da3e8c4b7489d4cbf35c20cd6908bbfcbce" + integrity sha512-5KMq7k6KmFCIB8/YMKMFsWdsdNkBwuARDRHDRpp5GKC78eT0LwHIaMEKo6gDUg3zBuMoy9OdcM/6f4dkW06C/A== dependencies: - bson "^5.5.0" - mongodb-connection-string-url "^2.6.0" - socks "^2.7.1" - optionalDependencies: - "@mongodb-js/saslprep" "^1.1.0" - -mongoose@^7.1.1: - version "7.6.8" - resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-7.6.8.tgz#2b088f0d2b8943f0748e99f7010124877830bcf9" - integrity sha512-q9zAySH+UtOK5yonWyNcLfq3PxrY6s4gdta4qNGKNOE2yTVoY9FP4hQtvWYnv4rkdk7T8QmQMC7bbhJjDxIunw== - dependencies: - bson "^5.5.0" + bson "^6.2.0" kareem "2.5.1" - mongodb "5.9.1" + mongodb "6.3.0" mpath "0.9.0" mquery "5.0.0" ms "2.1.3" @@ -3802,7 +3571,7 @@ normalize-range@^0.1.2: resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== -nwsapi@^2.2.2, nwsapi@^2.2.4: +nwsapi@^2.2.4: version "2.2.7" resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== @@ -3921,7 +3690,7 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" -p5@^1.8.0: +p5@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/p5/-/p5-1.9.0.tgz#04c406ae683449106d514108648035b21aa850fb" integrity sha512-+5/hz0ZokCDf7BMMAeemE7FIo7gFZK7ImL62acHLXZwerGjqj+171bnaAWj4aCFCx6fwysAr2U7/AKuPyPhehA== @@ -4056,7 +3825,7 @@ postcss@8.4.31: picocolors "^1.0.0" source-map-js "^1.0.2" -postcss@^8.4.21, postcss@^8.4.23: +postcss@^8.4.23, postcss@^8.4.35: version "8.4.35" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.35.tgz#60997775689ce09011edf083a549cea44aabe2f7" integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== @@ -4070,10 +3839,10 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prettier@^2.8.4: - version "2.8.8" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" - integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== +prettier@^3.2.5: + version "3.2.5" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.5.tgz#e52bc3090586e824964a8813b09aba6233b28368" + integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A== process-nextick-args@~2.0.0: version "2.0.1" @@ -4127,12 +3896,12 @@ react-beautiful-dnd@^13.1.1: redux "^4.0.4" use-memo-one "^1.1.1" -react-blockly@^7.0.1: - version "7.3.0" - resolved "https://registry.yarnpkg.com/react-blockly/-/react-blockly-7.3.0.tgz#0866665d9417a14d4eb8cf6417adb4b0b5c5b800" - integrity sha512-moaaxX0u3gSyToO82F2ahIOj+HmcTWcy9dXxboh8VsMFxSE2ebPUltLMEfANXpCqzoY+ajqiTgb4g+qudZ34aw== +react-blockly@^8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/react-blockly/-/react-blockly-8.1.1.tgz#55240d4d6e51fa4a04aab23b88b054eb0e4b96c8" + integrity sha512-MOT9c/1D3ItO7vwUAlWvgDEJT7alNkR5MCgwE160EK2hFka4DRPHOUXBGnxRod8OVY+hdvMUnmiHUVTrYODwXQ== dependencies: - blockly ">= 3.20200024.0" + blockly ">= 10.0.0" prop-types "^15.8.1" react-clientside-effect@^1.2.6: @@ -4192,6 +3961,13 @@ react-modal@^3.16.1: react-lifecycles-compat "^3.0.0" warning "^4.0.3" +react-number-format@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/react-number-format/-/react-number-format-5.3.1.tgz#840c257da9cb4b248990d8db46e4d23e8bac67ff" + integrity sha512-qpYcQLauIeEhCZUZY9jXZnnroOtdy3jYaS1zQ3M1Sr6r/KMOBEIGNIb7eKT19g2N1wbYgFgvDzs19hw5TrB8XQ== + dependencies: + prop-types "^15.7.2" + react-popper@^2.2.4: version "2.3.0" resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.3.0.tgz#17891c620e1320dce318bad9fede46a5f71c70ba" @@ -4225,7 +4001,7 @@ react-remove-scroll-bar@^2.3.4: react-style-singleton "^2.2.1" tslib "^2.0.0" -react-remove-scroll@^2.5.5, react-remove-scroll@^2.5.6: +react-remove-scroll@^2.5.6, react-remove-scroll@^2.5.7: version "2.5.7" resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz#15a1fd038e8497f65a695bf26a4a57970cac1ccb" integrity sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA== @@ -4254,12 +4030,12 @@ react-style-singleton@^2.2.1: invariant "^2.2.4" tslib "^2.0.0" -react-textarea-autosize@8.3.4: - version "8.3.4" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz#270a343de7ad350534141b02c9cb78903e553524" - integrity sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ== +react-textarea-autosize@8.5.3: + version "8.5.3" + resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz#d1e9fe760178413891484847d3378706052dd409" + integrity sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ== dependencies: - "@babel/runtime" "^7.10.2" + "@babel/runtime" "^7.20.13" use-composed-ref "^1.3.0" use-latest "^1.2.1" @@ -4280,7 +4056,7 @@ react@18.2.0: dependencies: loose-envify "^1.1.0" -reactstrap@^9.1.6: +reactstrap@^9.2.2: version "9.2.2" resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-9.2.2.tgz#d3a062cb1492a9cf6ed4684698044fa1996350c9" integrity sha512-4KroiGOdqZLAnMGzHjpErW3G7bLB+QbKzzMLIDXydPIV0y74lpdL7WtXHkLWAGInd97WCPNx4+R0NQDPyzIfhw== @@ -4534,19 +4310,6 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - -socks@^2.7.1: - version "2.7.3" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.3.tgz#7d8a75d7ce845c0a96f710917174dba0d543a785" - integrity sha512-vfuYK48HXCTFD03G/1/zkIls3Ebr2YNa4qU9gHDZdblHLiqhJrJGkY3+0Nx0JpN9qBhJbVObc1CNciT1bIZJxw== - dependencies: - ip-address "^9.0.5" - smart-buffer "^4.2.0" - source-map-js@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" @@ -4557,11 +4320,6 @@ source-map@^0.5.7: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== -source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - sparse-bitfield@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz#ff4ae6e68656056ba4b3e792ab3334d38273ca11" @@ -4569,11 +4327,6 @@ sparse-bitfield@^3.0.3: dependencies: memory-pager "^1.0.2" -sprintf-js@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" - integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== - streamsearch@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" @@ -4743,7 +4496,7 @@ tabbable@^6.0.1: resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== -tailwindcss@^3.2.4: +tailwindcss@^3.4.1: version "3.4.1" resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.1.tgz#f512ca5d1dd4c9503c7d3d28a968f1ad8f5c839d" integrity sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA== @@ -4840,13 +4593,6 @@ tough-cookie@^4.1.2: universalify "^0.2.0" url-parse "^1.5.3" -tr46@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" - integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA== - dependencies: - punycode "^2.1.1" - tr46@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/tr46/-/tr46-4.1.1.tgz#281a758dcc82aeb4fe38c7dfe4d11a395aac8469" @@ -4896,6 +4642,11 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^3.13.1: + version "3.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706" + integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== + typed-array-buffer@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz#0608ffe6bca71bf15a45bff0ca2604107a1325f5" @@ -4935,10 +4686,10 @@ typed-array-length@^1.0.4: for-each "^0.3.3" is-typed-array "^1.1.9" -typescript@4.9.5: - version "4.9.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" - integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== +typescript@5.3.3: + version "5.3.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" + integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== unbox-primitive@^1.0.2: version "1.0.2" @@ -5056,14 +4807,6 @@ whatwg-mimetype@^3.0.0: resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== -whatwg-url@^11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018" - integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== - dependencies: - tr46 "^3.0.0" - webidl-conversions "^7.0.0" - whatwg-url@^12.0.0, whatwg-url@^12.0.1: version "12.0.1" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-12.0.1.tgz#fd7bcc71192e7c3a2a97b9a8d6b094853ed8773c" From ee74b64e3c8434a14c8610be9e1a840ab7ac32e0 Mon Sep 17 00:00:00 2001 From: Kapil Garg Date: Wed, 14 Feb 2024 16:52:19 -0600 Subject: [PATCH 063/111] trying again with node engine --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7efcf40..978f70a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "engine": { - "node": "20.x" + "node": "^20.x" }, "scripts": { "dev": "next dev", From b004ce751a99f932e695f82d221a5c6b498cbed1 Mon Sep 17 00:00:00 2001 From: Kapil Garg Date: Wed, 14 Feb 2024 16:54:17 -0600 Subject: [PATCH 064/111] fml its ENGINES not ENGINE --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 978f70a..c515adf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "engine": { + "engines": { "node": "^20.x" }, "scripts": { From 00cff8bd65a2807b6a4b36c12e21b75c5c3c7cfd Mon Sep 17 00:00:00 2001 From: Linh Ly Date: Thu, 15 Feb 2024 08:06:57 -0600 Subject: [PATCH 065/111] add context for useability test --- components/diagnosis/DiagContext.tsx | 69 ++++++++- lib/context/options.ts | 19 +-- lib/populateContext.ts | 202 +++++++++++++++++++++++++-- pages/response.tsx | 4 + 4 files changed, 271 insertions(+), 23 deletions(-) diff --git a/components/diagnosis/DiagContext.tsx b/components/diagnosis/DiagContext.tsx index 576d90d..df15ae9 100644 --- a/components/diagnosis/DiagContext.tsx +++ b/components/diagnosis/DiagContext.tsx @@ -3,7 +3,51 @@ import styles from './DiagContext.module.css'; import { options } from '../../lib/context/options'; import P5Canvas from './P5Canvas'; + +const Context_test = { + "Total Points Committed": 25, + "Total Points Available": 16, + "Sprint Log Stories and Tasks": [ + { + "Task": "Create React DOM object for dynamic page", + "Description": "Learn how React DOM works", + "Assigned to": "Mentee" + }, + { + "Task": "Write API calls to XXX", + "Description": "Learn what API calls are and write calls to pull data", + "Assigned to": "Mentee" + }, + { + "Task": "Connect page to MongoDB", + "Description": "Setup MongoDB account, learn how it works, write calls to pull and save data, learn and write controller functions", + "Assigned to": "Mentee" + } + ], + "Git Commits Summary": [ + "10/1 Weird bug with dynamic page layout", + "10/2 Fixed layout bug", + "10/3 Database response 404 error", + "10/4 Database response 201 error", + "10/5 Attempt to fix 201 error but failed", + "10/6 fixed database errors", + "10/6 Save controller 50% - save not working", + "10/7 Attempt to fix save controller but failed", + "10/8 Second attempt to fix controller" + ] +}; + +const Context_test_title = [ + "Total Points Committed", + "Total Points Available", + "Sprint Log Stories and Tasks", + "Git Commits Summary", +]; + + + const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) => { + // popupOptions is the list context pieces that are not displayed but is available to display const [popupOptions, setPopupOptions] = useState( options.filter((option) => !items.some((item) => item.title === option)) ); @@ -18,13 +62,29 @@ const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) = setPopupOpen(false); }; - const addOptionToContext = (option: any) => { - const newItem = { title: option, data: context_lib[option] }; + + + // addOptionToContext: add Context piece to the display when selected from all context options + const addOptionToContext = (option:any) => { + // The title property is the key containing all type of context pieces + // The data property is retrieved from the context_lib object using option as a key + const newItem = { title: option, data: context_lib[option] }; // Connects to data from API + + // adding newItem to the existing items array + // Spread the elements of the current items array and add newItem to the end setItems([...items, newItem]); + + // removing option from the existing array + // Filter popupOptions array to remove any elements that are equal to the option parameter setPopupOptions(popupOptions.filter((popOption) => popOption !== option)); + + // Update the state variable canvas by adding a new object to the existing canvas array + // The type property is assigned the value of newItem.title setCanvas([...canvas, { type: newItem.title, xPos: 50, yPos: 50 }]); }; + + const removeItem = (index) => { const removedItem = items[index]; const updatedItems = [...items]; @@ -33,8 +93,9 @@ const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) = setPopupOptions([...popupOptions, removedItem.title]); // Add the removed item back to popupOptions }; - const test = ['Sprint log-Total Points Commited This Sprint', 'PRC-link to PRC'] + // const test = ['Sprint log-Total Points Commited This Sprint', 'PRC-link to PRC'] + // Organize and Format Context Pieces return (

      Context

      @@ -74,7 +135,7 @@ const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) =

      - Select an option to add + Select an option to add

        {popupOptions.map((option, index) => ( diff --git a/lib/context/options.ts b/lib/context/options.ts index 39ec0d9..17405af 100644 --- a/lib/context/options.ts +++ b/lib/context/options.ts @@ -1,20 +1,21 @@ export const options = ["Sprint log-Total Points Commited This Sprint", - "Sprint log-Total Points Spent This Sprint", + // "Sprint log-Total Points Spent This Sprint", // "Sprint log-Individual Points Commited This Sprint", // "Sprint log-Individual Points Spent This Sprint (MidSprint)", // "Sprint log-Individual Points Commited-All Sprints", // "Sprint log-Individual Points Spent-All Sprint", - "Sprint log-D T and R Points Breakdown", - "Sprint log-Summary of Stories", + // "Sprint log-D T and R Points Breakdown", + // "Sprint log-Summary of Stories", "Sprint log-Summary of Tasks", - 'PRC-link to PRC', + // 'PRC-link to PRC', // "Sprint log-Last Edited", - "Sprint log-Riskiest Risk Specified in Planning View", - "Sprint log-Canvases Planned to Update Last Week", - "Link to Sprint Log", + // "Sprint log-Riskiest Risk Specified in Planning View", + // "Sprint log-Canvases Planned to Update Last Week", + // "Link to Sprint Log", // "PRC-Specific Slides (Under construction)", - "PRC-Time Last Edited", - "PRC-Slides Updated in this sprint", + // "PRC-Time Last Edited", + // "PRC-Slides Updated in this sprint", + "Git Commits Summary", // "Github-Number of Lines Code Committed this sprint (Under construction)", // "Github-Number of Branches Created this sprint (Under construction)", // "Github-Summary of Commits made this sprint (Under construction)" diff --git a/lib/populateContext.ts b/lib/populateContext.ts index 47aa4b1..25e1d13 100644 --- a/lib/populateContext.ts +++ b/lib/populateContext.ts @@ -48,7 +48,7 @@ export function populate_sprint_log_summary_of_stories(OS_object) { let project = OS_object.project; const Stories = project.tools.sprintLog.stories; - let storiesObjs = Stories.map((story) => { + let storiesObjs = Stories.map((story) => { // For each story from the API, extract relevant info to fill out data model const tasks = story.tasks; let DCategory, @@ -99,10 +99,181 @@ export function populate_sprint_log_summary_of_stories(OS_object) { }; }); + // After data model is created, return it return storiesObjs; } + // Takes the title of a context piece and returns the value for it + +// ----------------------------------------------------CONNECTED TO API VERSION----------------------------------------------- +// export function getContextValue(title, OS_object) { +// const studentObjs = populate_sprint_log_points(OS_object).studentObjs; + +// if (title == 'Sprint log-Total Points Spent This Sprint') { +// let sprintLogPointsContext = populate_sprint_log_points(OS_object); +// let output = +// sprintLogPointsContext.totalObj.pointsSpent + +// '/' + +// sprintLogPointsContext.totalObj.pointsAvailable; +// return output; +// } else if (title == 'Sprint log-Total Points Commited This Sprint') { +// let sprintLogPointsContext = populate_sprint_log_points(OS_object); + +// let output = //format as fraction of committed out of available points +// sprintLogPointsContext.totalObj.pointsCommitted + +// '/' + +// sprintLogPointsContext.totalObj.pointsAvailable; + +// return output; +// } else if (title == 'Sprint log-D T and R Points Breakdown') { +// let sprintLogPointsContext = populate_sprint_log_points(OS_object); +// // Extract the D, T, and R points breakdown +// const DPointsCommitted = sprintLogPointsContext.totalObj.DCommitted; +// const TPointsCommitted = sprintLogPointsContext.totalObj.TCommitted; +// const RPointsCommitted = sprintLogPointsContext.totalObj.RCommitted; + +// // Format the breakdown as a string +// const output = ` +// Design Points: ${DPointsCommitted}, +// Technology Points: ${TPointsCommitted}, +// Research Points: ${RPointsCommitted} +// `; +// return output; +// // ------------------SUMMARY OF STORIES---------------------- +// } else if (title == 'Sprint log-Summary of Stories') { +// let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); +// const output = storiesObjs.map( // for each story obj in storiesObjs, extract info and format them +// (story) => +// `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ +// story.purpose || 'none' +// }\n Deliverables: ${story.deliverables} \n` +// ); +// const format_output = `\n${output.join('\n')}`; + +// if (storiesObjs.length == 0) { +// return 'no stories planned'; +// } else { +// return format_output; +// } +// // -----------------------SUMMARY OF TASKS------------------------- +// } else if (title == 'Sprint log-Summary of Tasks') { +// let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); + +// const output = storiesObjs.map((story) => { +// const tasksWithDescriptions = story.tasks.map( +// (task) => +// `----${task.description}, [${task.pointsRequired} hr], [assigned to ${task.assignee}]` +// ); +// return `\n${story.description}:\n${tasksWithDescriptions.join('\n')}\n`; +// }); +// if (storiesObjs.length == 0) { +// return 'no stories planned'; +// } else { +// return output; +// } +// } else if (title == 'PRC-link to PRC') { +// let link = OS_object.project.tools.researchCanvas.url; +// // let link = 'https://docs.google.com/presentation/d/1cjlBycSraDkSG_Fb6oZXfc8Eg5Hwo7RdXg4jJ_rXgL8/edit?usp=sharing' +// return link; +// } else if (title == 'PRC-Time Last Edited') { +// return 'Sep 21, by Yiran Mo'; +// } else if (title == 'PRC-Slides Updated in this sprint') { +// return 'None'; +// } else if (title == 'Sprint log-Riskiest Risk Specified in Planning View') { +// return `\nThe riskeist risk that we need to resolve is to tune paramaters (1)The top percentage of categories that related to FL -> Top 100%? 50%? 20%? (2) Top percentage of the categories that are more closely related to FL than PA -> Top 100%?, 50%? 20%? +// And filter out the sparse data (categories with few reviews) and test the performance of the model.`; +// } else if (title == 'Sprint log-Canvases Planned to Update Last Week') { +// return 'Interface Argument, System Argument'; +// } else if (title == 'Sprint log-Individual Points Commited This Sprint') { +// const output = studentObjs.map( +// (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` +// ); +// return output; +// } else if (title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)'){ +// // How to detect midsprint? +// const output = studentObjs.map( +// (student) => `${student.name} [${student.totalHoursSpent} hr]; ` +// ); +// console.log(OS_object); +// return output; +// } else if (title == 'Link to Sprint Log') { +// return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } +// else { +// return 'No Match'; +// } +// } + +//--------------------------------------------------FAKE TEST DATA-------------------------------------------------- +const TESTstoriesObjs = [ + + { + description: "Create React DOM object for dynamic page", + tasks: [ + { + description: "learn how React DOM works", + pointsRequired: '2', + assignee: "Mentee" + }, + { + description: "create page structure", + pointsRequired: '3', + assignee: "Mentee" + } + ] + }, + { + description: "write API calls to XXX", + tasks: [ + { + description: "learn what API calls are", + pointsRequired: '2', + assignee: "Mentee" + }, + { + description: "write calls to pull data", + pointsRequired: '4', + assignee: "Mentee", + } + ] + }, + { + description: "Connect page to MongoDB", + tasks: [ + { + description: "Setup MongoDB account, learn how it works", + pointsRequired: '2', + assignee: "Mentee" + }, + { + description: "Write calls to pull and save data", + pointsRequired: '3', + assignee: "Mentee" + }, + { + description: "Learn and write controller functions", + pointsRequired: '3', + assignee: "Mentee" + } + ] + } +]; + +const gitSummaries = [ + "10/1 Weird bug with dynamic page layout", + "10/2 Fixed layout bug", + "10/3 Database response 404 error", + "10/4 Database response 201 error", + "10/5 Attempt to fix 201 error but failed", + "10/6 Fixed database errors", + "10/6 Save controller 50% - save not working", + "10/7 Attempt to fix save controller but failed", + "10/8 Second attempt to fix controller" +] + +////////////////////////////////////////////////////////////////TEST FAKE DATA////////////////////////////////////////// + +// /////////////////////////////TEST VERSION/UNCONNECTED TO API (MANUAL DATA FUDGING) ///////////////////////////////////// export function getContextValue(title, OS_object) { const studentObjs = populate_sprint_log_points(OS_object).studentObjs; @@ -115,11 +286,14 @@ export function getContextValue(title, OS_object) { return output; } else if (title == 'Sprint log-Total Points Commited This Sprint') { let sprintLogPointsContext = populate_sprint_log_points(OS_object); - let output = - sprintLogPointsContext.totalObj.pointsCommitted + - '/' + - sprintLogPointsContext.totalObj.pointsAvailable; - return output; + // let output = + // sprintLogPointsContext.totalObj.pointsCommitted + + // '/' + + // sprintLogPointsContext.totalObj.pointsAvailable; + + let testOutput = '25/16'; + + return testOutput; } else if (title == 'Sprint log-D T and R Points Breakdown') { let sprintLogPointsContext = populate_sprint_log_points(OS_object); // Extract the D, T, and R points breakdown @@ -134,6 +308,7 @@ export function getContextValue(title, OS_object) { Research Points: ${RPointsCommitted} `; return output; + // ------------------SUMMARY OF STORIES---------------------- } else if (title == 'Sprint log-Summary of Stories') { let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); const output = storiesObjs.map( @@ -149,8 +324,11 @@ export function getContextValue(title, OS_object) { } else { return format_output; } + // -----------------------SUMMARY OF TASKS------------------------- } else if (title == 'Sprint log-Summary of Tasks') { - let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); + // let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); + let storiesObjs = TESTstoriesObjs; + const output = storiesObjs.map((story) => { const tasksWithDescriptions = story.tasks.map( (task) => @@ -181,15 +359,18 @@ export function getContextValue(title, OS_object) { (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` ); return output; - } else if ( - title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)' - ) { + } else if (title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)'){ // How to detect midsprint? const output = studentObjs.map( (student) => `${student.name} [${student.totalHoursSpent} hr]; ` ); console.log(OS_object); return output; + } else if (title == 'Git Commits Summary'){ + const formattedSummaries = gitSummaries.map(summary => `\n- ${summary}`).join(''); + + + return formattedSummaries; // } else if (title == 'Sprint log-Individual Points Commited-All Sprints') { // // Issue: OS_Object only return current sprint [temp sol: hardcode] // return `\nGrace: [Sprint 0] 1/8, [Sprint 1] 15.9/16, [Sprint 2] 24.5/16, [Sprint 3] 22/16, [Sprint 4] 16/16, [Sprint 5] 15.5/16 @@ -206,3 +387,4 @@ export function getContextValue(title, OS_object) { return 'No Match'; } } + diff --git a/pages/response.tsx b/pages/response.tsx index 3165619..28adc00 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -18,6 +18,7 @@ import HypothesisList from '../components/diagnosis/HypothesisList'; import getComputedOrganizationalObjectsForProject from '../pages/api/test/get_OS_project_object.js'; import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; +// MAKES DATA MODEL FOR PROPS const Response: NextPage = ({sigName, projName, description, gen_context, initial_hunch, game_plan, detector, root_causes, id, context_lib, hypothesisList, canvasState}) => { const [items, setItems] = useState(root_causes); const [problemContent, setProblemContent] = useState( @@ -154,9 +155,12 @@ export const getServerSideProps: GetServerSideProps = async (context) => { context.data = getContextValue(context.title, project_object); } + + // creates a library that holds the values of all context options const context_lib: Record = {}; options.forEach((option) => { + // Changing context_lib[option] here will only apply when the context piece is removed and added back again. context_lib[option] = getContextValue(option, project_object); }); From d8d7d938d8d082d5e67b45981088c30bf1769fc9 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 19 Feb 2024 09:33:24 -0600 Subject: [PATCH 066/111] context space prompt --- components/diagnosis/DiagContext.module.css | 4 +- components/diagnosis/DiagContext.tsx | 1 + lib/context/options.ts | 12 +- lib/populateContext.ts | 385 ++++++++++---------- lib/sigProjNames.ts | 7 +- package.json | 2 +- 6 files changed, 208 insertions(+), 203 deletions(-) diff --git a/components/diagnosis/DiagContext.module.css b/components/diagnosis/DiagContext.module.css index 5399c4f..4eecfef 100644 --- a/components/diagnosis/DiagContext.module.css +++ b/components/diagnosis/DiagContext.module.css @@ -7,7 +7,7 @@ padding: 20px; background-color: white; width: 100%; - height: 90%; + height: 87%; box-sizing: border-box; position: relative; } @@ -30,5 +30,5 @@ background-color: white; padding: 15px; margin: 8px; - height: 60%; + height: 65%; } diff --git a/components/diagnosis/DiagContext.tsx b/components/diagnosis/DiagContext.tsx index df15ae9..2bff1d9 100644 --- a/components/diagnosis/DiagContext.tsx +++ b/components/diagnosis/DiagContext.tsx @@ -99,6 +99,7 @@ const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) = return (

        Context

        +

        What context pieces stood out to you? What insight do they provide you about why the issue is occuring?

        < div className={styles.context_scrollable} style={{whiteSpace: 'pre-line', overflowY: 'auto'}}> diff --git a/lib/context/options.ts b/lib/context/options.ts index 17405af..59b8067 100644 --- a/lib/context/options.ts +++ b/lib/context/options.ts @@ -1,17 +1,17 @@ export const options = ["Sprint log-Total Points Commited This Sprint", - // "Sprint log-Total Points Spent This Sprint", + "Sprint log-Total Points Spent This Sprint", // "Sprint log-Individual Points Commited This Sprint", // "Sprint log-Individual Points Spent This Sprint (MidSprint)", // "Sprint log-Individual Points Commited-All Sprints", // "Sprint log-Individual Points Spent-All Sprint", - // "Sprint log-D T and R Points Breakdown", - // "Sprint log-Summary of Stories", + "Sprint log-D T and R Points Breakdown", + "Sprint log-Summary of Stories", "Sprint log-Summary of Tasks", - // 'PRC-link to PRC', + 'PRC-link to PRC', // "Sprint log-Last Edited", - // "Sprint log-Riskiest Risk Specified in Planning View", + "Sprint log-Riskiest Risk Specified in Planning View", // "Sprint log-Canvases Planned to Update Last Week", - // "Link to Sprint Log", + "Link to Sprint Log", // "PRC-Specific Slides (Under construction)", // "PRC-Time Last Edited", // "PRC-Slides Updated in this sprint", diff --git a/lib/populateContext.ts b/lib/populateContext.ts index 25e1d13..48fbbbe 100644 --- a/lib/populateContext.ts +++ b/lib/populateContext.ts @@ -107,6 +107,174 @@ export function populate_sprint_log_summary_of_stories(OS_object) { // Takes the title of a context piece and returns the value for it // ----------------------------------------------------CONNECTED TO API VERSION----------------------------------------------- +export function getContextValue(title, OS_object) { + const studentObjs = populate_sprint_log_points(OS_object).studentObjs; + + if (title == 'Sprint log-Total Points Spent This Sprint') { + let sprintLogPointsContext = populate_sprint_log_points(OS_object); + let output = + sprintLogPointsContext.totalObj.pointsSpent + + '/' + + sprintLogPointsContext.totalObj.pointsAvailable; + return output; + } else if (title == 'Sprint log-Total Points Commited This Sprint') { + let sprintLogPointsContext = populate_sprint_log_points(OS_object); + + let output = //format as fraction of committed out of available points + sprintLogPointsContext.totalObj.pointsCommitted + + '/' + + sprintLogPointsContext.totalObj.pointsAvailable; + + return output; + } else if (title == 'Sprint log-D T and R Points Breakdown') { + let sprintLogPointsContext = populate_sprint_log_points(OS_object); + // Extract the D, T, and R points breakdown + const DPointsCommitted = sprintLogPointsContext.totalObj.DCommitted; + const TPointsCommitted = sprintLogPointsContext.totalObj.TCommitted; + const RPointsCommitted = sprintLogPointsContext.totalObj.RCommitted; + + // Format the breakdown as a string + const output = ` + Design Points: ${DPointsCommitted}, + Technology Points: ${TPointsCommitted}, + Research Points: ${RPointsCommitted} + `; + return output; + // ------------------SUMMARY OF STORIES---------------------- + } else if (title == 'Sprint log-Summary of Stories') { + let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); + const output = storiesObjs.map( // for each story obj in storiesObjs, extract info and format them + (story) => + `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ + story.purpose || 'none' + }\n Deliverables: ${story.deliverables} \n` + ); + const format_output = `\n${output.join('\n')}`; + + if (storiesObjs.length == 0) { + return 'no stories planned'; + } else { + return format_output; + } + // -----------------------SUMMARY OF TASKS------------------------- + } else if (title == 'Sprint log-Summary of Tasks') { + let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); + + const output = storiesObjs.map((story) => { + const tasksWithDescriptions = story.tasks.map( + (task) => + `----${task.description}, [${task.pointsRequired} hr], [assigned to ${task.assignee}]` + ); + return `\n${story.description}:\n${tasksWithDescriptions.join('\n')}\n`; + }); + if (storiesObjs.length == 0) { + return 'no stories planned'; + } else { + return output; + } + } else if (title == 'PRC-link to PRC') { + let link = OS_object.project.tools.researchCanvas.url; + // let link = 'https://docs.google.com/presentation/d/1cjlBycSraDkSG_Fb6oZXfc8Eg5Hwo7RdXg4jJ_rXgL8/edit?usp=sharing' + return link; + } else if (title == 'PRC-Time Last Edited') { + return 'Sep 21, by Yiran Mo'; + } else if (title == 'PRC-Slides Updated in this sprint') { + return 'None'; + } else if (title == 'Sprint log-Riskiest Risk Specified in Planning View') { + return `\nlack of plan about prototype`; + } else if (title == 'Sprint log-Canvases Planned to Update Last Week') { + return 'Interface Argument, System Argument'; + } else if (title == 'Sprint log-Individual Points Commited This Sprint') { + const output = studentObjs.map( + (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` + ); + return output; + } else if (title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)'){ + // How to detect midsprint? + const output = studentObjs.map( + (student) => `${student.name} [${student.totalHoursSpent} hr]; ` + ); + console.log(OS_object); + return output; + } else if (title == 'Link to Sprint Log') { + return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } + else if (title == 'Git Commits Summary'){ + return 'Jason and Arya have not made a Github repo yet' + } else { + return 'No Match'; + } +} + +// //--------------------------------------------------FAKE TEST DATA-------------------------------------------------- +// const TESTstoriesObjs = [ + +// { +// description: "Create React DOM object for dynamic page", +// tasks: [ +// { +// description: "learn how React DOM works", +// pointsRequired: '2', +// assignee: "Mentee" +// }, +// { +// description: "create page structure", +// pointsRequired: '3', +// assignee: "Mentee" +// } +// ] +// }, +// { +// description: "write API calls to XXX", +// tasks: [ +// { +// description: "learn what API calls are", +// pointsRequired: '2', +// assignee: "Mentee" +// }, +// { +// description: "write calls to pull data", +// pointsRequired: '4', +// assignee: "Mentee", +// } +// ] +// }, +// { +// description: "Connect page to MongoDB", +// tasks: [ +// { +// description: "Setup MongoDB account, learn how it works", +// pointsRequired: '2', +// assignee: "Mentee" +// }, +// { +// description: "Write calls to pull and save data", +// pointsRequired: '3', +// assignee: "Mentee" +// }, +// { +// description: "Learn and write controller functions", +// pointsRequired: '3', +// assignee: "Mentee" +// } +// ] +// } +// ]; + +// const gitSummaries = [ +// "10/1 Weird bug with dynamic page layout", +// "10/2 Fixed layout bug", +// "10/3 Database response 404 error", +// "10/4 Database response 201 error", +// "10/5 Attempt to fix 201 error but failed", +// "10/6 Fixed database errors", +// "10/6 Save controller 50% - save not working", +// "10/7 Attempt to fix save controller but failed", +// "10/8 Second attempt to fix controller" +// ] + +// ////////////////////////////////////////////////////////////////TEST FAKE DATA////////////////////////////////////////// + +// // /////////////////////////////TEST VERSION/UNCONNECTED TO API (MANUAL DATA FUDGING) ///////////////////////////////////// // export function getContextValue(title, OS_object) { // const studentObjs = populate_sprint_log_points(OS_object).studentObjs; @@ -119,13 +287,14 @@ export function populate_sprint_log_summary_of_stories(OS_object) { // return output; // } else if (title == 'Sprint log-Total Points Commited This Sprint') { // let sprintLogPointsContext = populate_sprint_log_points(OS_object); - -// let output = //format as fraction of committed out of available points -// sprintLogPointsContext.totalObj.pointsCommitted + -// '/' + -// sprintLogPointsContext.totalObj.pointsAvailable; +// // let output = +// // sprintLogPointsContext.totalObj.pointsCommitted + +// // '/' + +// // sprintLogPointsContext.totalObj.pointsAvailable; -// return output; +// let testOutput = '25/16'; + +// return testOutput; // } else if (title == 'Sprint log-D T and R Points Breakdown') { // let sprintLogPointsContext = populate_sprint_log_points(OS_object); // // Extract the D, T, and R points breakdown @@ -143,7 +312,7 @@ export function populate_sprint_log_summary_of_stories(OS_object) { // // ------------------SUMMARY OF STORIES---------------------- // } else if (title == 'Sprint log-Summary of Stories') { // let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); -// const output = storiesObjs.map( // for each story obj in storiesObjs, extract info and format them +// const output = storiesObjs.map( // (story) => // `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ // story.purpose || 'none' @@ -158,7 +327,8 @@ export function populate_sprint_log_summary_of_stories(OS_object) { // } // // -----------------------SUMMARY OF TASKS------------------------- // } else if (title == 'Sprint log-Summary of Tasks') { -// let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); +// // let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); +// let storiesObjs = TESTstoriesObjs; // const output = storiesObjs.map((story) => { // const tasksWithDescriptions = story.tasks.map( @@ -197,6 +367,21 @@ export function populate_sprint_log_summary_of_stories(OS_object) { // ); // console.log(OS_object); // return output; +// } else if (title == 'Git Commits Summary'){ +// const formattedSummaries = gitSummaries.map(summary => `\n- ${summary}`).join(''); + + +// return formattedSummaries; +// // } else if (title == 'Sprint log-Individual Points Commited-All Sprints') { +// // // Issue: OS_Object only return current sprint [temp sol: hardcode] +// // return `\nGrace: [Sprint 0] 1/8, [Sprint 1] 15.9/16, [Sprint 2] 24.5/16, [Sprint 3] 22/16, [Sprint 4] 16/16, [Sprint 5] 15.5/16 +// // Linh: [Sprint 0] 7/8, [Sprint 1] 15.9/16, [Sprint 2] 11.5/16, [Sprint 3] 20/16, [Sprint 4] 15/16, [Sprint 5] 15.5/16`; +// // } else if (title == 'Sprint log-Individual Points Spent-All Sprint') { +// // // Issue: OS_Object only return current sprint [temp sol: hardcode] +// // let project = OS_object.project; +// // const sprint = project.tools; +// // return `\nGrace: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 6/16, [Sprint 3] 21/16, [Sprint 4] 14/16, [Sprint 5] 0/16 +// // Linh: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 5.5/16, [Sprint 3] 19/16, [Sprint 4] 15/16, [Sprint 5] 0/16`; // } else if (title == 'Link to Sprint Log') { // return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } // else { @@ -204,187 +389,3 @@ export function populate_sprint_log_summary_of_stories(OS_object) { // } // } -//--------------------------------------------------FAKE TEST DATA-------------------------------------------------- -const TESTstoriesObjs = [ - - { - description: "Create React DOM object for dynamic page", - tasks: [ - { - description: "learn how React DOM works", - pointsRequired: '2', - assignee: "Mentee" - }, - { - description: "create page structure", - pointsRequired: '3', - assignee: "Mentee" - } - ] - }, - { - description: "write API calls to XXX", - tasks: [ - { - description: "learn what API calls are", - pointsRequired: '2', - assignee: "Mentee" - }, - { - description: "write calls to pull data", - pointsRequired: '4', - assignee: "Mentee", - } - ] - }, - { - description: "Connect page to MongoDB", - tasks: [ - { - description: "Setup MongoDB account, learn how it works", - pointsRequired: '2', - assignee: "Mentee" - }, - { - description: "Write calls to pull and save data", - pointsRequired: '3', - assignee: "Mentee" - }, - { - description: "Learn and write controller functions", - pointsRequired: '3', - assignee: "Mentee" - } - ] - } -]; - -const gitSummaries = [ - "10/1 Weird bug with dynamic page layout", - "10/2 Fixed layout bug", - "10/3 Database response 404 error", - "10/4 Database response 201 error", - "10/5 Attempt to fix 201 error but failed", - "10/6 Fixed database errors", - "10/6 Save controller 50% - save not working", - "10/7 Attempt to fix save controller but failed", - "10/8 Second attempt to fix controller" -] - -////////////////////////////////////////////////////////////////TEST FAKE DATA////////////////////////////////////////// - -// /////////////////////////////TEST VERSION/UNCONNECTED TO API (MANUAL DATA FUDGING) ///////////////////////////////////// -export function getContextValue(title, OS_object) { - const studentObjs = populate_sprint_log_points(OS_object).studentObjs; - - if (title == 'Sprint log-Total Points Spent This Sprint') { - let sprintLogPointsContext = populate_sprint_log_points(OS_object); - let output = - sprintLogPointsContext.totalObj.pointsSpent + - '/' + - sprintLogPointsContext.totalObj.pointsAvailable; - return output; - } else if (title == 'Sprint log-Total Points Commited This Sprint') { - let sprintLogPointsContext = populate_sprint_log_points(OS_object); - // let output = - // sprintLogPointsContext.totalObj.pointsCommitted + - // '/' + - // sprintLogPointsContext.totalObj.pointsAvailable; - - let testOutput = '25/16'; - - return testOutput; - } else if (title == 'Sprint log-D T and R Points Breakdown') { - let sprintLogPointsContext = populate_sprint_log_points(OS_object); - // Extract the D, T, and R points breakdown - const DPointsCommitted = sprintLogPointsContext.totalObj.DCommitted; - const TPointsCommitted = sprintLogPointsContext.totalObj.TCommitted; - const RPointsCommitted = sprintLogPointsContext.totalObj.RCommitted; - - // Format the breakdown as a string - const output = ` - Design Points: ${DPointsCommitted}, - Technology Points: ${TPointsCommitted}, - Research Points: ${RPointsCommitted} - `; - return output; - // ------------------SUMMARY OF STORIES---------------------- - } else if (title == 'Sprint log-Summary of Stories') { - let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); - const output = storiesObjs.map( - (story) => - `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ - story.purpose || 'none' - }\n Deliverables: ${story.deliverables} \n` - ); - const format_output = `\n${output.join('\n')}`; - - if (storiesObjs.length == 0) { - return 'no stories planned'; - } else { - return format_output; - } - // -----------------------SUMMARY OF TASKS------------------------- - } else if (title == 'Sprint log-Summary of Tasks') { - // let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); - let storiesObjs = TESTstoriesObjs; - - const output = storiesObjs.map((story) => { - const tasksWithDescriptions = story.tasks.map( - (task) => - `----${task.description}, [${task.pointsRequired} hr], [assigned to ${task.assignee}]` - ); - return `\n${story.description}:\n${tasksWithDescriptions.join('\n')}\n`; - }); - if (storiesObjs.length == 0) { - return 'no stories planned'; - } else { - return output; - } - } else if (title == 'PRC-link to PRC') { - let link = OS_object.project.tools.researchCanvas.url; - // let link = 'https://docs.google.com/presentation/d/1cjlBycSraDkSG_Fb6oZXfc8Eg5Hwo7RdXg4jJ_rXgL8/edit?usp=sharing' - return link; - } else if (title == 'PRC-Time Last Edited') { - return 'Sep 21, by Yiran Mo'; - } else if (title == 'PRC-Slides Updated in this sprint') { - return 'None'; - } else if (title == 'Sprint log-Riskiest Risk Specified in Planning View') { - return `\nThe riskeist risk that we need to resolve is to tune paramaters (1)The top percentage of categories that related to FL -> Top 100%? 50%? 20%? (2) Top percentage of the categories that are more closely related to FL than PA -> Top 100%?, 50%? 20%? - And filter out the sparse data (categories with few reviews) and test the performance of the model.`; - } else if (title == 'Sprint log-Canvases Planned to Update Last Week') { - return 'Interface Argument, System Argument'; - } else if (title == 'Sprint log-Individual Points Commited This Sprint') { - const output = studentObjs.map( - (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` - ); - return output; - } else if (title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)'){ - // How to detect midsprint? - const output = studentObjs.map( - (student) => `${student.name} [${student.totalHoursSpent} hr]; ` - ); - console.log(OS_object); - return output; - } else if (title == 'Git Commits Summary'){ - const formattedSummaries = gitSummaries.map(summary => `\n- ${summary}`).join(''); - - - return formattedSummaries; - // } else if (title == 'Sprint log-Individual Points Commited-All Sprints') { - // // Issue: OS_Object only return current sprint [temp sol: hardcode] - // return `\nGrace: [Sprint 0] 1/8, [Sprint 1] 15.9/16, [Sprint 2] 24.5/16, [Sprint 3] 22/16, [Sprint 4] 16/16, [Sprint 5] 15.5/16 - // Linh: [Sprint 0] 7/8, [Sprint 1] 15.9/16, [Sprint 2] 11.5/16, [Sprint 3] 20/16, [Sprint 4] 15/16, [Sprint 5] 15.5/16`; - // } else if (title == 'Sprint log-Individual Points Spent-All Sprint') { - // // Issue: OS_Object only return current sprint [temp sol: hardcode] - // let project = OS_object.project; - // const sprint = project.tools; - // return `\nGrace: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 6/16, [Sprint 3] 21/16, [Sprint 4] 14/16, [Sprint 5] 0/16 - // Linh: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 5.5/16, [Sprint 3] 19/16, [Sprint 4] 15/16, [Sprint 5] 0/16`; - } else if (title == 'Link to Sprint Log') { - return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } - else { - return 'No Match'; - } -} - diff --git a/lib/sigProjNames.ts b/lib/sigProjNames.ts index 5e8140d..32c6529 100644 --- a/lib/sigProjNames.ts +++ b/lib/sigProjNames.ts @@ -1,7 +1,9 @@ export const sigNameOptions = [ - 'Human-AI Tools', 'Networked Orchestration Technologies', 'Contextually-Aware Metacognitive Practice', + 'Breaking Boundaries', + 'Human-AI Tools (Difference)', + 'Human-AI Tools (Expression)' // 'All SIGs' ] @@ -11,5 +13,6 @@ export const projNameOptions = [ 'Human-AI Tools for Accounting for Differences', 'Situated Reflection Systems', ' Kapil Proj', - 'Human-AI Tools for Concept Expression' + 'Human-AI Tools for Concept Expression', + 'Prototyping with LLMs' ] \ No newline at end of file diff --git a/package.json b/package.json index c515adf..5e54e76 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "engines": { - "node": "^20.x" + "node": "^19.x" }, "scripts": { "dev": "next dev", From 3303e2a0dbe3ef22924883dd9f87494f23fe8d2f Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Sun, 25 Feb 2024 16:09:40 -0600 Subject: [PATCH 067/111] Revert "context space prompt" This reverts commit d8d7d938d8d082d5e67b45981088c30bf1769fc9. --- components/diagnosis/DiagContext.module.css | 4 +- components/diagnosis/DiagContext.tsx | 1 - lib/context/options.ts | 12 +- lib/populateContext.ts | 385 ++++++++++---------- lib/sigProjNames.ts | 7 +- package.json | 2 +- 6 files changed, 203 insertions(+), 208 deletions(-) diff --git a/components/diagnosis/DiagContext.module.css b/components/diagnosis/DiagContext.module.css index 4eecfef..5399c4f 100644 --- a/components/diagnosis/DiagContext.module.css +++ b/components/diagnosis/DiagContext.module.css @@ -7,7 +7,7 @@ padding: 20px; background-color: white; width: 100%; - height: 87%; + height: 90%; box-sizing: border-box; position: relative; } @@ -30,5 +30,5 @@ background-color: white; padding: 15px; margin: 8px; - height: 65%; + height: 60%; } diff --git a/components/diagnosis/DiagContext.tsx b/components/diagnosis/DiagContext.tsx index 2bff1d9..df15ae9 100644 --- a/components/diagnosis/DiagContext.tsx +++ b/components/diagnosis/DiagContext.tsx @@ -99,7 +99,6 @@ const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) = return (

        Context

        -

        What context pieces stood out to you? What insight do they provide you about why the issue is occuring?

        < div className={styles.context_scrollable} style={{whiteSpace: 'pre-line', overflowY: 'auto'}}> diff --git a/lib/context/options.ts b/lib/context/options.ts index 59b8067..17405af 100644 --- a/lib/context/options.ts +++ b/lib/context/options.ts @@ -1,17 +1,17 @@ export const options = ["Sprint log-Total Points Commited This Sprint", - "Sprint log-Total Points Spent This Sprint", + // "Sprint log-Total Points Spent This Sprint", // "Sprint log-Individual Points Commited This Sprint", // "Sprint log-Individual Points Spent This Sprint (MidSprint)", // "Sprint log-Individual Points Commited-All Sprints", // "Sprint log-Individual Points Spent-All Sprint", - "Sprint log-D T and R Points Breakdown", - "Sprint log-Summary of Stories", + // "Sprint log-D T and R Points Breakdown", + // "Sprint log-Summary of Stories", "Sprint log-Summary of Tasks", - 'PRC-link to PRC', + // 'PRC-link to PRC', // "Sprint log-Last Edited", - "Sprint log-Riskiest Risk Specified in Planning View", + // "Sprint log-Riskiest Risk Specified in Planning View", // "Sprint log-Canvases Planned to Update Last Week", - "Link to Sprint Log", + // "Link to Sprint Log", // "PRC-Specific Slides (Under construction)", // "PRC-Time Last Edited", // "PRC-Slides Updated in this sprint", diff --git a/lib/populateContext.ts b/lib/populateContext.ts index 48fbbbe..25e1d13 100644 --- a/lib/populateContext.ts +++ b/lib/populateContext.ts @@ -107,174 +107,6 @@ export function populate_sprint_log_summary_of_stories(OS_object) { // Takes the title of a context piece and returns the value for it // ----------------------------------------------------CONNECTED TO API VERSION----------------------------------------------- -export function getContextValue(title, OS_object) { - const studentObjs = populate_sprint_log_points(OS_object).studentObjs; - - if (title == 'Sprint log-Total Points Spent This Sprint') { - let sprintLogPointsContext = populate_sprint_log_points(OS_object); - let output = - sprintLogPointsContext.totalObj.pointsSpent + - '/' + - sprintLogPointsContext.totalObj.pointsAvailable; - return output; - } else if (title == 'Sprint log-Total Points Commited This Sprint') { - let sprintLogPointsContext = populate_sprint_log_points(OS_object); - - let output = //format as fraction of committed out of available points - sprintLogPointsContext.totalObj.pointsCommitted + - '/' + - sprintLogPointsContext.totalObj.pointsAvailable; - - return output; - } else if (title == 'Sprint log-D T and R Points Breakdown') { - let sprintLogPointsContext = populate_sprint_log_points(OS_object); - // Extract the D, T, and R points breakdown - const DPointsCommitted = sprintLogPointsContext.totalObj.DCommitted; - const TPointsCommitted = sprintLogPointsContext.totalObj.TCommitted; - const RPointsCommitted = sprintLogPointsContext.totalObj.RCommitted; - - // Format the breakdown as a string - const output = ` - Design Points: ${DPointsCommitted}, - Technology Points: ${TPointsCommitted}, - Research Points: ${RPointsCommitted} - `; - return output; - // ------------------SUMMARY OF STORIES---------------------- - } else if (title == 'Sprint log-Summary of Stories') { - let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); - const output = storiesObjs.map( // for each story obj in storiesObjs, extract info and format them - (story) => - `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ - story.purpose || 'none' - }\n Deliverables: ${story.deliverables} \n` - ); - const format_output = `\n${output.join('\n')}`; - - if (storiesObjs.length == 0) { - return 'no stories planned'; - } else { - return format_output; - } - // -----------------------SUMMARY OF TASKS------------------------- - } else if (title == 'Sprint log-Summary of Tasks') { - let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); - - const output = storiesObjs.map((story) => { - const tasksWithDescriptions = story.tasks.map( - (task) => - `----${task.description}, [${task.pointsRequired} hr], [assigned to ${task.assignee}]` - ); - return `\n${story.description}:\n${tasksWithDescriptions.join('\n')}\n`; - }); - if (storiesObjs.length == 0) { - return 'no stories planned'; - } else { - return output; - } - } else if (title == 'PRC-link to PRC') { - let link = OS_object.project.tools.researchCanvas.url; - // let link = 'https://docs.google.com/presentation/d/1cjlBycSraDkSG_Fb6oZXfc8Eg5Hwo7RdXg4jJ_rXgL8/edit?usp=sharing' - return link; - } else if (title == 'PRC-Time Last Edited') { - return 'Sep 21, by Yiran Mo'; - } else if (title == 'PRC-Slides Updated in this sprint') { - return 'None'; - } else if (title == 'Sprint log-Riskiest Risk Specified in Planning View') { - return `\nlack of plan about prototype`; - } else if (title == 'Sprint log-Canvases Planned to Update Last Week') { - return 'Interface Argument, System Argument'; - } else if (title == 'Sprint log-Individual Points Commited This Sprint') { - const output = studentObjs.map( - (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` - ); - return output; - } else if (title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)'){ - // How to detect midsprint? - const output = studentObjs.map( - (student) => `${student.name} [${student.totalHoursSpent} hr]; ` - ); - console.log(OS_object); - return output; - } else if (title == 'Link to Sprint Log') { - return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } - else if (title == 'Git Commits Summary'){ - return 'Jason and Arya have not made a Github repo yet' - } else { - return 'No Match'; - } -} - -// //--------------------------------------------------FAKE TEST DATA-------------------------------------------------- -// const TESTstoriesObjs = [ - -// { -// description: "Create React DOM object for dynamic page", -// tasks: [ -// { -// description: "learn how React DOM works", -// pointsRequired: '2', -// assignee: "Mentee" -// }, -// { -// description: "create page structure", -// pointsRequired: '3', -// assignee: "Mentee" -// } -// ] -// }, -// { -// description: "write API calls to XXX", -// tasks: [ -// { -// description: "learn what API calls are", -// pointsRequired: '2', -// assignee: "Mentee" -// }, -// { -// description: "write calls to pull data", -// pointsRequired: '4', -// assignee: "Mentee", -// } -// ] -// }, -// { -// description: "Connect page to MongoDB", -// tasks: [ -// { -// description: "Setup MongoDB account, learn how it works", -// pointsRequired: '2', -// assignee: "Mentee" -// }, -// { -// description: "Write calls to pull and save data", -// pointsRequired: '3', -// assignee: "Mentee" -// }, -// { -// description: "Learn and write controller functions", -// pointsRequired: '3', -// assignee: "Mentee" -// } -// ] -// } -// ]; - -// const gitSummaries = [ -// "10/1 Weird bug with dynamic page layout", -// "10/2 Fixed layout bug", -// "10/3 Database response 404 error", -// "10/4 Database response 201 error", -// "10/5 Attempt to fix 201 error but failed", -// "10/6 Fixed database errors", -// "10/6 Save controller 50% - save not working", -// "10/7 Attempt to fix save controller but failed", -// "10/8 Second attempt to fix controller" -// ] - -// ////////////////////////////////////////////////////////////////TEST FAKE DATA////////////////////////////////////////// - -// // /////////////////////////////TEST VERSION/UNCONNECTED TO API (MANUAL DATA FUDGING) ///////////////////////////////////// // export function getContextValue(title, OS_object) { // const studentObjs = populate_sprint_log_points(OS_object).studentObjs; @@ -287,14 +119,13 @@ export function getContextValue(title, OS_object) { // return output; // } else if (title == 'Sprint log-Total Points Commited This Sprint') { // let sprintLogPointsContext = populate_sprint_log_points(OS_object); -// // let output = -// // sprintLogPointsContext.totalObj.pointsCommitted + -// // '/' + -// // sprintLogPointsContext.totalObj.pointsAvailable; - -// let testOutput = '25/16'; + +// let output = //format as fraction of committed out of available points +// sprintLogPointsContext.totalObj.pointsCommitted + +// '/' + +// sprintLogPointsContext.totalObj.pointsAvailable; -// return testOutput; +// return output; // } else if (title == 'Sprint log-D T and R Points Breakdown') { // let sprintLogPointsContext = populate_sprint_log_points(OS_object); // // Extract the D, T, and R points breakdown @@ -312,7 +143,7 @@ export function getContextValue(title, OS_object) { // // ------------------SUMMARY OF STORIES---------------------- // } else if (title == 'Sprint log-Summary of Stories') { // let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); -// const output = storiesObjs.map( +// const output = storiesObjs.map( // for each story obj in storiesObjs, extract info and format them // (story) => // `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ // story.purpose || 'none' @@ -327,8 +158,7 @@ export function getContextValue(title, OS_object) { // } // // -----------------------SUMMARY OF TASKS------------------------- // } else if (title == 'Sprint log-Summary of Tasks') { -// // let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); -// let storiesObjs = TESTstoriesObjs; +// let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); // const output = storiesObjs.map((story) => { // const tasksWithDescriptions = story.tasks.map( @@ -367,21 +197,6 @@ export function getContextValue(title, OS_object) { // ); // console.log(OS_object); // return output; -// } else if (title == 'Git Commits Summary'){ -// const formattedSummaries = gitSummaries.map(summary => `\n- ${summary}`).join(''); - - -// return formattedSummaries; -// // } else if (title == 'Sprint log-Individual Points Commited-All Sprints') { -// // // Issue: OS_Object only return current sprint [temp sol: hardcode] -// // return `\nGrace: [Sprint 0] 1/8, [Sprint 1] 15.9/16, [Sprint 2] 24.5/16, [Sprint 3] 22/16, [Sprint 4] 16/16, [Sprint 5] 15.5/16 -// // Linh: [Sprint 0] 7/8, [Sprint 1] 15.9/16, [Sprint 2] 11.5/16, [Sprint 3] 20/16, [Sprint 4] 15/16, [Sprint 5] 15.5/16`; -// // } else if (title == 'Sprint log-Individual Points Spent-All Sprint') { -// // // Issue: OS_Object only return current sprint [temp sol: hardcode] -// // let project = OS_object.project; -// // const sprint = project.tools; -// // return `\nGrace: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 6/16, [Sprint 3] 21/16, [Sprint 4] 14/16, [Sprint 5] 0/16 -// // Linh: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 5.5/16, [Sprint 3] 19/16, [Sprint 4] 15/16, [Sprint 5] 0/16`; // } else if (title == 'Link to Sprint Log') { // return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } // else { @@ -389,3 +204,187 @@ export function getContextValue(title, OS_object) { // } // } +//--------------------------------------------------FAKE TEST DATA-------------------------------------------------- +const TESTstoriesObjs = [ + + { + description: "Create React DOM object for dynamic page", + tasks: [ + { + description: "learn how React DOM works", + pointsRequired: '2', + assignee: "Mentee" + }, + { + description: "create page structure", + pointsRequired: '3', + assignee: "Mentee" + } + ] + }, + { + description: "write API calls to XXX", + tasks: [ + { + description: "learn what API calls are", + pointsRequired: '2', + assignee: "Mentee" + }, + { + description: "write calls to pull data", + pointsRequired: '4', + assignee: "Mentee", + } + ] + }, + { + description: "Connect page to MongoDB", + tasks: [ + { + description: "Setup MongoDB account, learn how it works", + pointsRequired: '2', + assignee: "Mentee" + }, + { + description: "Write calls to pull and save data", + pointsRequired: '3', + assignee: "Mentee" + }, + { + description: "Learn and write controller functions", + pointsRequired: '3', + assignee: "Mentee" + } + ] + } +]; + +const gitSummaries = [ + "10/1 Weird bug with dynamic page layout", + "10/2 Fixed layout bug", + "10/3 Database response 404 error", + "10/4 Database response 201 error", + "10/5 Attempt to fix 201 error but failed", + "10/6 Fixed database errors", + "10/6 Save controller 50% - save not working", + "10/7 Attempt to fix save controller but failed", + "10/8 Second attempt to fix controller" +] + +////////////////////////////////////////////////////////////////TEST FAKE DATA////////////////////////////////////////// + +// /////////////////////////////TEST VERSION/UNCONNECTED TO API (MANUAL DATA FUDGING) ///////////////////////////////////// +export function getContextValue(title, OS_object) { + const studentObjs = populate_sprint_log_points(OS_object).studentObjs; + + if (title == 'Sprint log-Total Points Spent This Sprint') { + let sprintLogPointsContext = populate_sprint_log_points(OS_object); + let output = + sprintLogPointsContext.totalObj.pointsSpent + + '/' + + sprintLogPointsContext.totalObj.pointsAvailable; + return output; + } else if (title == 'Sprint log-Total Points Commited This Sprint') { + let sprintLogPointsContext = populate_sprint_log_points(OS_object); + // let output = + // sprintLogPointsContext.totalObj.pointsCommitted + + // '/' + + // sprintLogPointsContext.totalObj.pointsAvailable; + + let testOutput = '25/16'; + + return testOutput; + } else if (title == 'Sprint log-D T and R Points Breakdown') { + let sprintLogPointsContext = populate_sprint_log_points(OS_object); + // Extract the D, T, and R points breakdown + const DPointsCommitted = sprintLogPointsContext.totalObj.DCommitted; + const TPointsCommitted = sprintLogPointsContext.totalObj.TCommitted; + const RPointsCommitted = sprintLogPointsContext.totalObj.RCommitted; + + // Format the breakdown as a string + const output = ` + Design Points: ${DPointsCommitted}, + Technology Points: ${TPointsCommitted}, + Research Points: ${RPointsCommitted} + `; + return output; + // ------------------SUMMARY OF STORIES---------------------- + } else if (title == 'Sprint log-Summary of Stories') { + let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); + const output = storiesObjs.map( + (story) => + `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ + story.purpose || 'none' + }\n Deliverables: ${story.deliverables} \n` + ); + const format_output = `\n${output.join('\n')}`; + + if (storiesObjs.length == 0) { + return 'no stories planned'; + } else { + return format_output; + } + // -----------------------SUMMARY OF TASKS------------------------- + } else if (title == 'Sprint log-Summary of Tasks') { + // let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); + let storiesObjs = TESTstoriesObjs; + + const output = storiesObjs.map((story) => { + const tasksWithDescriptions = story.tasks.map( + (task) => + `----${task.description}, [${task.pointsRequired} hr], [assigned to ${task.assignee}]` + ); + return `\n${story.description}:\n${tasksWithDescriptions.join('\n')}\n`; + }); + if (storiesObjs.length == 0) { + return 'no stories planned'; + } else { + return output; + } + } else if (title == 'PRC-link to PRC') { + let link = OS_object.project.tools.researchCanvas.url; + // let link = 'https://docs.google.com/presentation/d/1cjlBycSraDkSG_Fb6oZXfc8Eg5Hwo7RdXg4jJ_rXgL8/edit?usp=sharing' + return link; + } else if (title == 'PRC-Time Last Edited') { + return 'Sep 21, by Yiran Mo'; + } else if (title == 'PRC-Slides Updated in this sprint') { + return 'None'; + } else if (title == 'Sprint log-Riskiest Risk Specified in Planning View') { + return `\nThe riskeist risk that we need to resolve is to tune paramaters (1)The top percentage of categories that related to FL -> Top 100%? 50%? 20%? (2) Top percentage of the categories that are more closely related to FL than PA -> Top 100%?, 50%? 20%? + And filter out the sparse data (categories with few reviews) and test the performance of the model.`; + } else if (title == 'Sprint log-Canvases Planned to Update Last Week') { + return 'Interface Argument, System Argument'; + } else if (title == 'Sprint log-Individual Points Commited This Sprint') { + const output = studentObjs.map( + (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` + ); + return output; + } else if (title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)'){ + // How to detect midsprint? + const output = studentObjs.map( + (student) => `${student.name} [${student.totalHoursSpent} hr]; ` + ); + console.log(OS_object); + return output; + } else if (title == 'Git Commits Summary'){ + const formattedSummaries = gitSummaries.map(summary => `\n- ${summary}`).join(''); + + + return formattedSummaries; + // } else if (title == 'Sprint log-Individual Points Commited-All Sprints') { + // // Issue: OS_Object only return current sprint [temp sol: hardcode] + // return `\nGrace: [Sprint 0] 1/8, [Sprint 1] 15.9/16, [Sprint 2] 24.5/16, [Sprint 3] 22/16, [Sprint 4] 16/16, [Sprint 5] 15.5/16 + // Linh: [Sprint 0] 7/8, [Sprint 1] 15.9/16, [Sprint 2] 11.5/16, [Sprint 3] 20/16, [Sprint 4] 15/16, [Sprint 5] 15.5/16`; + // } else if (title == 'Sprint log-Individual Points Spent-All Sprint') { + // // Issue: OS_Object only return current sprint [temp sol: hardcode] + // let project = OS_object.project; + // const sprint = project.tools; + // return `\nGrace: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 6/16, [Sprint 3] 21/16, [Sprint 4] 14/16, [Sprint 5] 0/16 + // Linh: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 5.5/16, [Sprint 3] 19/16, [Sprint 4] 15/16, [Sprint 5] 0/16`; + } else if (title == 'Link to Sprint Log') { + return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } + else { + return 'No Match'; + } +} + diff --git a/lib/sigProjNames.ts b/lib/sigProjNames.ts index 32c6529..5e8140d 100644 --- a/lib/sigProjNames.ts +++ b/lib/sigProjNames.ts @@ -1,9 +1,7 @@ export const sigNameOptions = [ + 'Human-AI Tools', 'Networked Orchestration Technologies', 'Contextually-Aware Metacognitive Practice', - 'Breaking Boundaries', - 'Human-AI Tools (Difference)', - 'Human-AI Tools (Expression)' // 'All SIGs' ] @@ -13,6 +11,5 @@ export const projNameOptions = [ 'Human-AI Tools for Accounting for Differences', 'Situated Reflection Systems', ' Kapil Proj', - 'Human-AI Tools for Concept Expression', - 'Prototyping with LLMs' + 'Human-AI Tools for Concept Expression' ] \ No newline at end of file diff --git a/package.json b/package.json index 5e54e76..c515adf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "engines": { - "node": "^19.x" + "node": "^20.x" }, "scripts": { "dev": "next dev", From 2a508d61042946dcfcf5fb71261492d4d23ac0a1 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Sun, 25 Feb 2024 16:09:44 -0600 Subject: [PATCH 068/111] Revert "add context for useability test" This reverts commit 00cff8bd65a2807b6a4b36c12e21b75c5c3c7cfd. --- components/diagnosis/DiagContext.tsx | 69 +-------- lib/context/options.ts | 19 ++- lib/populateContext.ts | 202 ++------------------------- pages/response.tsx | 4 - 4 files changed, 23 insertions(+), 271 deletions(-) diff --git a/components/diagnosis/DiagContext.tsx b/components/diagnosis/DiagContext.tsx index df15ae9..576d90d 100644 --- a/components/diagnosis/DiagContext.tsx +++ b/components/diagnosis/DiagContext.tsx @@ -3,51 +3,7 @@ import styles from './DiagContext.module.css'; import { options } from '../../lib/context/options'; import P5Canvas from './P5Canvas'; - -const Context_test = { - "Total Points Committed": 25, - "Total Points Available": 16, - "Sprint Log Stories and Tasks": [ - { - "Task": "Create React DOM object for dynamic page", - "Description": "Learn how React DOM works", - "Assigned to": "Mentee" - }, - { - "Task": "Write API calls to XXX", - "Description": "Learn what API calls are and write calls to pull data", - "Assigned to": "Mentee" - }, - { - "Task": "Connect page to MongoDB", - "Description": "Setup MongoDB account, learn how it works, write calls to pull and save data, learn and write controller functions", - "Assigned to": "Mentee" - } - ], - "Git Commits Summary": [ - "10/1 Weird bug with dynamic page layout", - "10/2 Fixed layout bug", - "10/3 Database response 404 error", - "10/4 Database response 201 error", - "10/5 Attempt to fix 201 error but failed", - "10/6 fixed database errors", - "10/6 Save controller 50% - save not working", - "10/7 Attempt to fix save controller but failed", - "10/8 Second attempt to fix controller" - ] -}; - -const Context_test_title = [ - "Total Points Committed", - "Total Points Available", - "Sprint Log Stories and Tasks", - "Git Commits Summary", -]; - - - const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) => { - // popupOptions is the list context pieces that are not displayed but is available to display const [popupOptions, setPopupOptions] = useState( options.filter((option) => !items.some((item) => item.title === option)) ); @@ -62,29 +18,13 @@ const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) = setPopupOpen(false); }; - - - // addOptionToContext: add Context piece to the display when selected from all context options - const addOptionToContext = (option:any) => { - // The title property is the key containing all type of context pieces - // The data property is retrieved from the context_lib object using option as a key - const newItem = { title: option, data: context_lib[option] }; // Connects to data from API - - // adding newItem to the existing items array - // Spread the elements of the current items array and add newItem to the end + const addOptionToContext = (option: any) => { + const newItem = { title: option, data: context_lib[option] }; setItems([...items, newItem]); - - // removing option from the existing array - // Filter popupOptions array to remove any elements that are equal to the option parameter setPopupOptions(popupOptions.filter((popOption) => popOption !== option)); - - // Update the state variable canvas by adding a new object to the existing canvas array - // The type property is assigned the value of newItem.title setCanvas([...canvas, { type: newItem.title, xPos: 50, yPos: 50 }]); }; - - const removeItem = (index) => { const removedItem = items[index]; const updatedItems = [...items]; @@ -93,9 +33,8 @@ const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) = setPopupOptions([...popupOptions, removedItem.title]); // Add the removed item back to popupOptions }; - // const test = ['Sprint log-Total Points Commited This Sprint', 'PRC-link to PRC'] + const test = ['Sprint log-Total Points Commited This Sprint', 'PRC-link to PRC'] - // Organize and Format Context Pieces return (

        Context

        @@ -135,7 +74,7 @@ const Context: React.FC = ({ items, setItems, context_lib, canvas, setCanvas}) =

        - Select an option to add + Select an option to add

          {popupOptions.map((option, index) => ( diff --git a/lib/context/options.ts b/lib/context/options.ts index 17405af..39ec0d9 100644 --- a/lib/context/options.ts +++ b/lib/context/options.ts @@ -1,21 +1,20 @@ export const options = ["Sprint log-Total Points Commited This Sprint", - // "Sprint log-Total Points Spent This Sprint", + "Sprint log-Total Points Spent This Sprint", // "Sprint log-Individual Points Commited This Sprint", // "Sprint log-Individual Points Spent This Sprint (MidSprint)", // "Sprint log-Individual Points Commited-All Sprints", // "Sprint log-Individual Points Spent-All Sprint", - // "Sprint log-D T and R Points Breakdown", - // "Sprint log-Summary of Stories", + "Sprint log-D T and R Points Breakdown", + "Sprint log-Summary of Stories", "Sprint log-Summary of Tasks", - // 'PRC-link to PRC', + 'PRC-link to PRC', // "Sprint log-Last Edited", - // "Sprint log-Riskiest Risk Specified in Planning View", - // "Sprint log-Canvases Planned to Update Last Week", - // "Link to Sprint Log", + "Sprint log-Riskiest Risk Specified in Planning View", + "Sprint log-Canvases Planned to Update Last Week", + "Link to Sprint Log", // "PRC-Specific Slides (Under construction)", - // "PRC-Time Last Edited", - // "PRC-Slides Updated in this sprint", - "Git Commits Summary", + "PRC-Time Last Edited", + "PRC-Slides Updated in this sprint", // "Github-Number of Lines Code Committed this sprint (Under construction)", // "Github-Number of Branches Created this sprint (Under construction)", // "Github-Summary of Commits made this sprint (Under construction)" diff --git a/lib/populateContext.ts b/lib/populateContext.ts index 25e1d13..47aa4b1 100644 --- a/lib/populateContext.ts +++ b/lib/populateContext.ts @@ -48,7 +48,7 @@ export function populate_sprint_log_summary_of_stories(OS_object) { let project = OS_object.project; const Stories = project.tools.sprintLog.stories; - let storiesObjs = Stories.map((story) => { // For each story from the API, extract relevant info to fill out data model + let storiesObjs = Stories.map((story) => { const tasks = story.tasks; let DCategory, @@ -99,181 +99,10 @@ export function populate_sprint_log_summary_of_stories(OS_object) { }; }); - // After data model is created, return it return storiesObjs; } - // Takes the title of a context piece and returns the value for it - -// ----------------------------------------------------CONNECTED TO API VERSION----------------------------------------------- -// export function getContextValue(title, OS_object) { -// const studentObjs = populate_sprint_log_points(OS_object).studentObjs; - -// if (title == 'Sprint log-Total Points Spent This Sprint') { -// let sprintLogPointsContext = populate_sprint_log_points(OS_object); -// let output = -// sprintLogPointsContext.totalObj.pointsSpent + -// '/' + -// sprintLogPointsContext.totalObj.pointsAvailable; -// return output; -// } else if (title == 'Sprint log-Total Points Commited This Sprint') { -// let sprintLogPointsContext = populate_sprint_log_points(OS_object); - -// let output = //format as fraction of committed out of available points -// sprintLogPointsContext.totalObj.pointsCommitted + -// '/' + -// sprintLogPointsContext.totalObj.pointsAvailable; - -// return output; -// } else if (title == 'Sprint log-D T and R Points Breakdown') { -// let sprintLogPointsContext = populate_sprint_log_points(OS_object); -// // Extract the D, T, and R points breakdown -// const DPointsCommitted = sprintLogPointsContext.totalObj.DCommitted; -// const TPointsCommitted = sprintLogPointsContext.totalObj.TCommitted; -// const RPointsCommitted = sprintLogPointsContext.totalObj.RCommitted; - -// // Format the breakdown as a string -// const output = ` -// Design Points: ${DPointsCommitted}, -// Technology Points: ${TPointsCommitted}, -// Research Points: ${RPointsCommitted} -// `; -// return output; -// // ------------------SUMMARY OF STORIES---------------------- -// } else if (title == 'Sprint log-Summary of Stories') { -// let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); -// const output = storiesObjs.map( // for each story obj in storiesObjs, extract info and format them -// (story) => -// `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ -// story.purpose || 'none' -// }\n Deliverables: ${story.deliverables} \n` -// ); -// const format_output = `\n${output.join('\n')}`; - -// if (storiesObjs.length == 0) { -// return 'no stories planned'; -// } else { -// return format_output; -// } -// // -----------------------SUMMARY OF TASKS------------------------- -// } else if (title == 'Sprint log-Summary of Tasks') { -// let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); - -// const output = storiesObjs.map((story) => { -// const tasksWithDescriptions = story.tasks.map( -// (task) => -// `----${task.description}, [${task.pointsRequired} hr], [assigned to ${task.assignee}]` -// ); -// return `\n${story.description}:\n${tasksWithDescriptions.join('\n')}\n`; -// }); -// if (storiesObjs.length == 0) { -// return 'no stories planned'; -// } else { -// return output; -// } -// } else if (title == 'PRC-link to PRC') { -// let link = OS_object.project.tools.researchCanvas.url; -// // let link = 'https://docs.google.com/presentation/d/1cjlBycSraDkSG_Fb6oZXfc8Eg5Hwo7RdXg4jJ_rXgL8/edit?usp=sharing' -// return link; -// } else if (title == 'PRC-Time Last Edited') { -// return 'Sep 21, by Yiran Mo'; -// } else if (title == 'PRC-Slides Updated in this sprint') { -// return 'None'; -// } else if (title == 'Sprint log-Riskiest Risk Specified in Planning View') { -// return `\nThe riskeist risk that we need to resolve is to tune paramaters (1)The top percentage of categories that related to FL -> Top 100%? 50%? 20%? (2) Top percentage of the categories that are more closely related to FL than PA -> Top 100%?, 50%? 20%? -// And filter out the sparse data (categories with few reviews) and test the performance of the model.`; -// } else if (title == 'Sprint log-Canvases Planned to Update Last Week') { -// return 'Interface Argument, System Argument'; -// } else if (title == 'Sprint log-Individual Points Commited This Sprint') { -// const output = studentObjs.map( -// (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` -// ); -// return output; -// } else if (title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)'){ -// // How to detect midsprint? -// const output = studentObjs.map( -// (student) => `${student.name} [${student.totalHoursSpent} hr]; ` -// ); -// console.log(OS_object); -// return output; -// } else if (title == 'Link to Sprint Log') { -// return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } -// else { -// return 'No Match'; -// } -// } - -//--------------------------------------------------FAKE TEST DATA-------------------------------------------------- -const TESTstoriesObjs = [ - - { - description: "Create React DOM object for dynamic page", - tasks: [ - { - description: "learn how React DOM works", - pointsRequired: '2', - assignee: "Mentee" - }, - { - description: "create page structure", - pointsRequired: '3', - assignee: "Mentee" - } - ] - }, - { - description: "write API calls to XXX", - tasks: [ - { - description: "learn what API calls are", - pointsRequired: '2', - assignee: "Mentee" - }, - { - description: "write calls to pull data", - pointsRequired: '4', - assignee: "Mentee", - } - ] - }, - { - description: "Connect page to MongoDB", - tasks: [ - { - description: "Setup MongoDB account, learn how it works", - pointsRequired: '2', - assignee: "Mentee" - }, - { - description: "Write calls to pull and save data", - pointsRequired: '3', - assignee: "Mentee" - }, - { - description: "Learn and write controller functions", - pointsRequired: '3', - assignee: "Mentee" - } - ] - } -]; - -const gitSummaries = [ - "10/1 Weird bug with dynamic page layout", - "10/2 Fixed layout bug", - "10/3 Database response 404 error", - "10/4 Database response 201 error", - "10/5 Attempt to fix 201 error but failed", - "10/6 Fixed database errors", - "10/6 Save controller 50% - save not working", - "10/7 Attempt to fix save controller but failed", - "10/8 Second attempt to fix controller" -] - -////////////////////////////////////////////////////////////////TEST FAKE DATA////////////////////////////////////////// - -// /////////////////////////////TEST VERSION/UNCONNECTED TO API (MANUAL DATA FUDGING) ///////////////////////////////////// export function getContextValue(title, OS_object) { const studentObjs = populate_sprint_log_points(OS_object).studentObjs; @@ -286,14 +115,11 @@ export function getContextValue(title, OS_object) { return output; } else if (title == 'Sprint log-Total Points Commited This Sprint') { let sprintLogPointsContext = populate_sprint_log_points(OS_object); - // let output = - // sprintLogPointsContext.totalObj.pointsCommitted + - // '/' + - // sprintLogPointsContext.totalObj.pointsAvailable; - - let testOutput = '25/16'; - - return testOutput; + let output = + sprintLogPointsContext.totalObj.pointsCommitted + + '/' + + sprintLogPointsContext.totalObj.pointsAvailable; + return output; } else if (title == 'Sprint log-D T and R Points Breakdown') { let sprintLogPointsContext = populate_sprint_log_points(OS_object); // Extract the D, T, and R points breakdown @@ -308,7 +134,6 @@ export function getContextValue(title, OS_object) { Research Points: ${RPointsCommitted} `; return output; - // ------------------SUMMARY OF STORIES---------------------- } else if (title == 'Sprint log-Summary of Stories') { let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); const output = storiesObjs.map( @@ -324,11 +149,8 @@ export function getContextValue(title, OS_object) { } else { return format_output; } - // -----------------------SUMMARY OF TASKS------------------------- } else if (title == 'Sprint log-Summary of Tasks') { - // let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); - let storiesObjs = TESTstoriesObjs; - + let storiesObjs = populate_sprint_log_summary_of_stories(OS_object); const output = storiesObjs.map((story) => { const tasksWithDescriptions = story.tasks.map( (task) => @@ -359,18 +181,15 @@ export function getContextValue(title, OS_object) { (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` ); return output; - } else if (title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)'){ + } else if ( + title == 'Sprint log-Individual Points Spent This Sprint (MidSprint)' + ) { // How to detect midsprint? const output = studentObjs.map( (student) => `${student.name} [${student.totalHoursSpent} hr]; ` ); console.log(OS_object); return output; - } else if (title == 'Git Commits Summary'){ - const formattedSummaries = gitSummaries.map(summary => `\n- ${summary}`).join(''); - - - return formattedSummaries; // } else if (title == 'Sprint log-Individual Points Commited-All Sprints') { // // Issue: OS_Object only return current sprint [temp sol: hardcode] // return `\nGrace: [Sprint 0] 1/8, [Sprint 1] 15.9/16, [Sprint 2] 24.5/16, [Sprint 3] 22/16, [Sprint 4] 16/16, [Sprint 5] 15.5/16 @@ -387,4 +206,3 @@ export function getContextValue(title, OS_object) { return 'No Match'; } } - diff --git a/pages/response.tsx b/pages/response.tsx index 28adc00..3165619 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -18,7 +18,6 @@ import HypothesisList from '../components/diagnosis/HypothesisList'; import getComputedOrganizationalObjectsForProject from '../pages/api/test/get_OS_project_object.js'; import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; -// MAKES DATA MODEL FOR PROPS const Response: NextPage = ({sigName, projName, description, gen_context, initial_hunch, game_plan, detector, root_causes, id, context_lib, hypothesisList, canvasState}) => { const [items, setItems] = useState(root_causes); const [problemContent, setProblemContent] = useState( @@ -155,12 +154,9 @@ export const getServerSideProps: GetServerSideProps = async (context) => { context.data = getContextValue(context.title, project_object); } - - // creates a library that holds the values of all context options const context_lib: Record = {}; options.forEach((option) => { - // Changing context_lib[option] here will only apply when the context piece is removed and added back again. context_lib[option] = getContextValue(option, project_object); }); From 298bc8451526e18f30a2921689ba24823b331245 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Sun, 25 Feb 2024 16:23:28 -0600 Subject: [PATCH 069/111] weird bug about node version --- package.json | 2 +- yarn.lock | 264 ++++++++++++++++++++++++++++----------------------- 2 files changed, 144 insertions(+), 122 deletions(-) diff --git a/package.json b/package.json index c515adf..5668381 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "engines": { - "node": "^20.x" + "node": ">18.x" }, "scripts": { "dev": "next dev", diff --git a/yarn.lock b/yarn.lock index 02c115c..cfaa5c5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1055,10 +1055,10 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.56.0": - version "8.56.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.56.0.tgz#ef20350fec605a7f7035a01764731b2de0f3782b" - integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A== +"@eslint/js@8.57.0": + version "8.57.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" + integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== "@floating-ui/core@^1.0.0": version "1.6.0" @@ -1096,7 +1096,7 @@ resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.1.tgz#16308cea045f0fc777b6ff20a9f25474dd8293d2" integrity sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q== -"@humanwhocodes/config-array@^0.11.13": +"@humanwhocodes/config-array@^0.11.14": version "0.11.14" resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== @@ -1128,9 +1128,9 @@ wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + version "0.3.4" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.4.tgz#9b18145d26cf33d08576cf4c7665b28554480ed7" + integrity sha512-Oud2QPM5dHviZNn4y/WhhYKSXksv+1xLEIsNrAbGcFzUN3ubqWRFT5gwPchNc5NuzILOU4tPBDTZ4VwhL8Y7cw== dependencies: "@jridgewell/set-array" "^1.0.1" "@jridgewell/sourcemap-codec" "^1.4.10" @@ -1152,22 +1152,22 @@ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== "@jridgewell/trace-mapping@^0.3.9": - version "0.3.22" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz#72a621e5de59f5f1ef792d0793a82ee20f645e4c" - integrity sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw== + version "0.3.23" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.23.tgz#afc96847f3f07841477f303eed687707a5aacd80" + integrity sha512-9/4foRoUKp8s96tSkh8DlAAc5A0Ty8vLXld+l9gjKKY6ckwI8G15f0hskGmuLZu78ZlGa1vtsfOa+lnB4vG6Jg== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" "@mantine/carousel@^7.5.2": - version "7.5.2" - resolved "https://registry.yarnpkg.com/@mantine/carousel/-/carousel-7.5.2.tgz#43bc1ab9939112465202a9cf608cfe6dad3bc468" - integrity sha512-9LBnsETBcT3Wr5jGPUpTBirYMD/EyFvYaBolSSUDJKxXxcmSAnjZWT7mvhTC5oU0mOrUlgLoo2IBJGwL0OY0DQ== + version "7.5.3" + resolved "https://registry.yarnpkg.com/@mantine/carousel/-/carousel-7.5.3.tgz#b1431c4470b86c1ebc8564ebe1dcc041e05521db" + integrity sha512-rGB4tpYc+n2gTC0ijHP2jeMO3z5s29lY/LqtSq2uh8JnIXguV23QUR61twI1TkuvFNhyS4jJspruaEx2ErtrLg== "@mantine/core@^7.5.2": - version "7.5.2" - resolved "https://registry.yarnpkg.com/@mantine/core/-/core-7.5.2.tgz#c9bb809f1b0ccb212a609f30b0829d28e3584fbe" - integrity sha512-e58qTiLEp9qLxQ5JZlPNykJWBR+oi0q2J8JPKTjTJD+4UM58uh9oL4wuMEdUyBgiYGvDc/cVYF+rftMpuCt+KQ== + version "7.5.3" + resolved "https://registry.yarnpkg.com/@mantine/core/-/core-7.5.3.tgz#ac83faf5d8f1b02bb09fde79d07365f6c3e76e1a" + integrity sha512-Wvv6DJXI+GX9mmKG5HITTh/24sCZ0RoYQHdTHh0tOfGnEy+RleyhA82UjnMsp0n2NjfCISBwbiKgfya6b2iaFw== dependencies: "@floating-ui/react" "^0.24.8" clsx "2.0.0" @@ -1177,9 +1177,9 @@ type-fest "^3.13.1" "@mantine/hooks@^7.5.2": - version "7.5.2" - resolved "https://registry.yarnpkg.com/@mantine/hooks/-/hooks-7.5.2.tgz#cd11e379438f707e10e7e061cc14b9ae2233ec8e" - integrity sha512-4POujH5Xx84VB/xfM6EttDq725dqqL2DntoeMjHz3Ua94aK5Y0VSc1IwlETxCuF7yNV5/w/Z8kgeVVa5cDgrPg== + version "7.5.3" + resolved "https://registry.yarnpkg.com/@mantine/hooks/-/hooks-7.5.3.tgz#34168712075ee40ff7353c840420d4568b0dd54e" + integrity sha512-mFI448mAs12v8FrgSVhytqlhTVrEjIfd/PqPEfwJu5YcZIq4YZdqpzJIUbANnRrFSvmoQpDb1PssdKx7Ds35hw== "@mantine/next@^6.0.21": version "6.0.21" @@ -1388,7 +1388,16 @@ hoist-non-react-statics "^3.3.0" redux "^4.0.0" -"@types/react@*", "@types/react@18.2.55": +"@types/react@*": + version "18.2.58" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.58.tgz#22082d12898d11806f4a1aefb5583116a047493d" + integrity sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/react@18.2.55": version "18.2.55" resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.55.tgz#38141821b7084404b5013742bc4ae08e44da7a67" integrity sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA== @@ -1705,10 +1714,12 @@ autoprefixer@^10.4.17: picocolors "^1.0.0" postcss-value-parser "^4.2.0" -available-typed-arrays@^1.0.5, available-typed-arrays@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz#ac812d8ce5a6b976d738e1c45f08d0b00bc7d725" - integrity sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg== +available-typed-arrays@^1.0.6, available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" axe-core@=4.7.0: version "4.7.0" @@ -1742,9 +1753,9 @@ binary-extensions@^2.0.0: integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== "blockly@>= 10.0.0", blockly@^10.3.1: - version "10.3.1" - resolved "https://registry.yarnpkg.com/blockly/-/blockly-10.3.1.tgz#7ea198a6499d474a0f231e89d0445511ec707612" - integrity sha512-EuHeCtcFJgTjHRktIL9I9S6/Dnd+AnjkSzMf79sQMrH47pZYSWGC2SZlgHIJve2JnY79D1W9ijMgjEyrgtbFnA== + version "10.4.2" + resolved "https://registry.yarnpkg.com/blockly/-/blockly-10.4.2.tgz#db3b16fdbe9168331249a7dc7a29e9c4230dcc60" + integrity sha512-oCJkHZD1HEPYPwnMk/sbmMmhW6UFe+3iH5yvDn3hy3HSVzCOunkw9H1Crb/MmlhhFdvjB5uWgGzQNAa2eWAV6A== dependencies: jsdom "22.1.0" @@ -1819,9 +1830,9 @@ camelcase-css@^2.0.1: integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001579, caniuse-lite@^1.0.30001587: - version "1.0.30001587" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz#a0bce920155fa56a1885a69c74e1163fc34b4881" - integrity sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA== + version "1.0.30001589" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001589.tgz#7ad6dba4c9bf6561aec8291976402339dc157dfb" + integrity sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg== chalk@^2.4.2: version "2.4.2" @@ -2030,7 +2041,7 @@ deep-is@^0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== -define-data-property@^1.0.1, define-data-property@^1.1.2: +define-data-property@^1.0.1, define-data-property@^1.1.2, define-data-property@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== @@ -2140,9 +2151,9 @@ domutils@^2.8.0: domhandler "^4.2.0" dotenv@^16.4.4: - version "16.4.4" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.4.tgz#a26e7bb95ebd36272ebb56edb80b826aecf224c1" - integrity sha512-XvPXc8XAQThSjAbY6cQ/9PcBXmFoWuw1sQ3b8HqUCR6ziGXjkTi//kB9SWa2UwqlgdAIuRqAa/9hVljzPehbYg== + version "16.4.5" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" + integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== duplexer2@^0.1.2: version "0.1.4" @@ -2157,9 +2168,9 @@ eastasianwidth@^0.2.0: integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== electron-to-chromium@^1.4.668: - version "1.4.669" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.669.tgz#37e9cc16cc2fbdd8e06a46fc1fd3a1249e091f64" - integrity sha512-E2SmpffFPrZhBSgf8ibqanRS2mpuk3FIRDzLDwt7WFpfgJMKDHJs0hmacyP0PS1cWsq0dVkwIIzlscNaterkPg== + version "1.4.681" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.681.tgz#5f23fad8aa7e1f64cbb7dd9d15c7e39a1cd7e6e3" + integrity sha512-1PpuqJUFWoXZ1E54m8bsLPVYwIVCRzvaL+n5cjigGga4z854abDnFRc+cTa2th4S79kyGqya/1xoR7h+Y5G5lg== embla-carousel-react@^7.1.0: version "7.1.0" @@ -2299,13 +2310,13 @@ es-iterator-helpers@^1.0.12, es-iterator-helpers@^1.0.15: safe-array-concat "^1.1.0" es-set-tostringtag@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz#11f7cc9f63376930a5f20be4915834f4bc74f9c9" - integrity sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q== + version "2.0.3" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== dependencies: - get-intrinsic "^1.2.2" - has-tostringtag "^1.0.0" - hasown "^2.0.0" + get-intrinsic "^1.2.4" + has-tostringtag "^1.0.2" + hasown "^2.0.1" es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: version "1.0.2" @@ -2473,15 +2484,15 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4 integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint@^8.56.0: - version "8.56.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.56.0.tgz#4957ce8da409dc0809f99ab07a1b94832ab74b15" - integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ== + version "8.57.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" + integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.6.1" "@eslint/eslintrc" "^2.1.4" - "@eslint/js" "8.56.0" - "@humanwhocodes/config-array" "^0.11.13" + "@eslint/js" "8.57.0" + "@humanwhocodes/config-array" "^0.11.14" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" "@ungap/structured-clone" "^1.2.0" @@ -2624,14 +2635,14 @@ flat-cache@^3.0.4: rimraf "^3.0.2" flatted@^3.2.9: - version "3.2.9" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" - integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== -focus-lock@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-1.2.0.tgz#8a59d4171ba07b2849a7a60f064fc133db21e610" - integrity sha512-MGUkR6hFmRNeoQxUtL9jYckpf6DZhlD4crD8FgEO9hS+yXaCg2vi2hat9fB9qUe9YsLa6eE9ykldqaqLU0kYKg== +focus-lock@^1.3.2: + version "1.3.3" + resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-1.3.3.tgz#b26711506025ec1ecdca69bb41fd10f0c15c4ae2" + integrity sha512-hfXkZha7Xt4RQtrL1HBfspAuIj89Y0fb6GX0dfJilb8S2G/lvL4akPAcHq6xoD2NuZnDMCnZL/zQesMyeu6Psg== dependencies: tslib "^2.0.3" @@ -2665,9 +2676,9 @@ fraction.js@^4.3.7: integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== framer-motion@^11.0.5: - version "11.0.5" - resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-11.0.5.tgz#2ae1341d8605a01c50009d3bb195a67e4e2bfc69" - integrity sha512-Lb0EYbQcSK/pgyQUJm+KzsQrKrJRX9sFRyzl9hSr9gFG4Mk8yP7BjhuxvRXzblOM/+JxycrJdCDVmOQBsjpYlw== + version "11.0.6" + resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-11.0.6.tgz#97c3076d9d718486eb533b58b88db800139d5fc3" + integrity sha512-BpO3mWF8UwxzO3Ca5AmSkrg14QYTeJa9vKgoLOoBdBdTPj0e81i1dMwnX6EQJXRieUx20uiDBXq8bA6y7N6b8Q== dependencies: tslib "^2.4.0" optionalDependencies: @@ -2844,17 +2855,17 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1, has-property-d dependencies: es-define-property "^1.0.0" -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== +has-proto@^1.0.1, has-proto@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== has-symbols@^1.0.2, has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -has-tostringtag@^1.0.0, has-tostringtag@^1.0.1: +has-tostringtag@^1.0.0, has-tostringtag@^1.0.1, has-tostringtag@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== @@ -3095,9 +3106,9 @@ is-map@^2.0.1: integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== is-negative-zero@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" - integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== is-number-object@^1.0.4: version "1.0.7" @@ -3135,11 +3146,11 @@ is-set@^2.0.1: integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== dependencies: - call-bind "^1.0.2" + call-bind "^1.0.7" is-string@^1.0.5, is-string@^1.0.7: version "1.0.7" @@ -3155,7 +3166,7 @@ is-symbol@^1.0.2, is-symbol@^1.0.3: dependencies: has-symbols "^1.0.2" -is-typed-array@^1.1.10, is-typed-array@^1.1.13, is-typed-array@^1.1.9: +is-typed-array@^1.1.13: version "1.1.13" resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== @@ -3343,9 +3354,9 @@ lilconfig@^2.1.0: integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== lilconfig@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.0.tgz#aabf03fd46934d0566d75b4b64ce41a2cdea1167" - integrity sha512-p3cz0JV5vw/XeouBU3Ldnp+ZkBjE+n8ydJ4mcwBrOiXXPqNlrzGBqWs9X4MWF7f+iKUBu794Y8Hh8yawiJbCjw== + version "3.1.1" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.1.tgz#9d8a246fa753106cfc205fd2d77042faca56e5e3" + integrity sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ== lines-and-columns@^1.1.6: version "1.2.4" @@ -3472,9 +3483,9 @@ mongodb@*, mongodb@6.3.0: mongodb-connection-string-url "^3.0.0" mongoose@^8.1.2: - version "8.1.2" - resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-8.1.2.tgz#f8a91da3e8c4b7489d4cbf35c20cd6908bbfcbce" - integrity sha512-5KMq7k6KmFCIB8/YMKMFsWdsdNkBwuARDRHDRpp5GKC78eT0LwHIaMEKo6gDUg3zBuMoy9OdcM/6f4dkW06C/A== + version "8.2.0" + resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-8.2.0.tgz#dac98f1a5bfefad8656a0bb085789a2dc079631c" + integrity sha512-la93n6zCYRbPS+c5N9oTDAktvREy5OT9OCljp1Tah0y3+p8UPMTAoabWaLZMdzYruOtF9/9GRf6MasaZjiZP1A== dependencies: bson "^6.2.0" kareem "2.5.1" @@ -3772,6 +3783,11 @@ pirates@^4.0.1: resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== +possible-typed-array-names@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + postcss-import@^15.1.0: version "15.1.0" resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" @@ -3925,12 +3941,12 @@ react-fast-compare@3.2.2, react-fast-compare@^3.0.1: integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== react-focus-lock@^2.9.4: - version "2.10.1" - resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.10.1.tgz#d047219d428e933c7041339000ea42f4c37b29f7" - integrity sha512-40zZ/Cvl3eMRoHrpcc11WmY+Md/kbjWofNLoGKvt+bti/mAeLZXkqbSIhhVlgXfdV1wD5puopcep5l4KX22Xvg== + version "2.11.1" + resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.11.1.tgz#9d532b29107c760c68ddadc1baff1a36e69c1fe0" + integrity sha512-IXLwnTBrLTlKTpASZXqqXJ8oymWrgAlOfuuDYN4XCuN1YJ72dwX198UCaF1QqGUk5C3QOnlMik//n3ufcfe8Ig== dependencies: "@babel/runtime" "^7.0.0" - focus-lock "^1.2.0" + focus-lock "^1.3.2" prop-types "^15.6.2" react-clientside-effect "^1.2.6" use-callback-ref "^1.3.0" @@ -3962,9 +3978,9 @@ react-modal@^3.16.1: warning "^4.0.3" react-number-format@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/react-number-format/-/react-number-format-5.3.1.tgz#840c257da9cb4b248990d8db46e4d23e8bac67ff" - integrity sha512-qpYcQLauIeEhCZUZY9jXZnnroOtdy3jYaS1zQ3M1Sr6r/KMOBEIGNIb7eKT19g2N1wbYgFgvDzs19hw5TrB8XQ== + version "5.3.3" + resolved "https://registry.yarnpkg.com/react-number-format/-/react-number-format-5.3.3.tgz#5e2c47769533f7bcbaa222d367f3bcf3263be602" + integrity sha512-maGHWmOvwYzyeRIpL0YC6drWqYaX6iFqjisdJXpZ+HzEtSEJsL6nqw4azTpF5Sm6SAvwUeAr7JY924Ebqq8EdA== dependencies: prop-types "^15.7.2" @@ -3994,9 +4010,9 @@ react-redux@^7.2.0: react-is "^17.0.2" react-remove-scroll-bar@^2.3.4: - version "2.3.4" - resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz#53e272d7a5cb8242990c7f144c44d8bd8ab5afd9" - integrity sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A== + version "2.3.5" + resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.5.tgz#cd2543b3ed7716c7c5b446342d21b0e0b303f47c" + integrity sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw== dependencies: react-style-singleton "^2.2.1" tslib "^2.0.0" @@ -4265,13 +4281,14 @@ set-function-length@^1.2.1: has-property-descriptors "^1.0.1" set-function-name@^2.0.0, set-function-name@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a" - integrity sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA== + version "2.0.2" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== dependencies: - define-data-property "^1.0.1" + define-data-property "^1.1.4" + es-errors "^1.3.0" functions-have-names "^1.2.3" - has-property-descriptors "^1.0.0" + has-property-descriptors "^1.0.2" shebang-command@^2.0.0: version "2.0.0" @@ -4562,9 +4579,9 @@ through@^2.3.8: integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== tiny-invariant@^1.0.6: - version "1.3.1" - resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642" - integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== + version "1.3.3" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" + integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== to-fast-properties@^2.0.0: version "2.0.0" @@ -4648,43 +4665,48 @@ type-fest@^3.13.1: integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== typed-array-buffer@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz#0608ffe6bca71bf15a45bff0ca2604107a1325f5" - integrity sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ== + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== dependencies: - call-bind "^1.0.6" + call-bind "^1.0.7" es-errors "^1.3.0" is-typed-array "^1.1.13" typed-array-byte-length@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" - integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + version "1.0.1" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== dependencies: - call-bind "^1.0.2" + call-bind "^1.0.7" for-each "^0.3.3" - has-proto "^1.0.1" - is-typed-array "^1.1.10" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" typed-array-byte-offset@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" - integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" + integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" for-each "^0.3.3" - has-proto "^1.0.1" - is-typed-array "^1.1.10" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" typed-array-length@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" - integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== + version "1.0.5" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.5.tgz#57d44da160296d8663fd63180a1802ebf25905d5" + integrity sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA== dependencies: - call-bind "^1.0.2" + call-bind "^1.0.7" for-each "^0.3.3" - is-typed-array "^1.1.9" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + possible-typed-array-names "^1.0.0" typescript@5.3.3: version "5.3.3" @@ -4936,9 +4958,9 @@ yaml@^1.10.0: integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== yaml@^2.3.4: - version "2.3.4" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2" - integrity sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA== + version "2.4.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.0.tgz#2376db1083d157f4b3a452995803dbcf43b08140" + integrity sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ== yocto-queue@^0.1.0: version "0.1.0" From 9a95cb8c765c23e93a482d664d7fe2df38176874 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 26 Feb 2024 16:38:44 -0600 Subject: [PATCH 070/111] deployment fix --- lib/ostest/response.json | 236882 ------------------------------------ package.json | 109 +- yarn.lock | 191 +- 3 files changed, 190 insertions(+), 236992 deletions(-) delete mode 100644 lib/ostest/response.json diff --git a/lib/ostest/response.json b/lib/ostest/response.json deleted file mode 100644 index 40a9035..0000000 --- a/lib/ostest/response.json +++ /dev/null @@ -1,236882 +0,0 @@ -{ - "presentationId": "1mksfTUtY-9ctogzuo_PPZQBMdt2K6F7DV57BeIBPjX8", - "pageSize": { - "width": { - "magnitude": 9144000, - "unit": "EMU" - }, - "height": { - "magnitude": 5143500, - "unit": "EMU" - } - }, - "slides": [ - { - "objectId": "gcbd9fbfbdf_0_285", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_286", - "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": 5, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "DTR \n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 5, - "endIndex": 48, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 5, - "endIndex": 47, - "textRun": { - "content": "Practical and Conceptual Research Canvases", - "style": { - "bold": true - } - } - }, - { - "startIndex": 47, - "endIndex": 48, - "textRun": { - "content": "\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 0.9 - } - }, - "placeholder": { - "type": "CENTERED_TITLE", - "parentObjectId": "p2_i0" - } - } - }, - { - "objectId": "g1d5b9d33aa0_0_4", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8402, - "scaleY": 0.2642, - "translateX": 311700, - "translateY": 2797175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 37, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "Orchestration Scripting Environments\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SUBTITLE", - "parentObjectId": "p2_i1" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p2", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_285:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_287", - "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": "gcbd9fbfbdf_0_288", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_288" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_334", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_335", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 38, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 37, - "textRun": { - "content": "Design Argumentation", - "style": {} - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "\n", - "style": { - "italic": true, - "fontSize": { - "magnitude": 30, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_334:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_336", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_337", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_337" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_46", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_47", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 517800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 12, - "textRun": { - "content": "User classes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 12, - "endIndex": 13, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 71, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 70, - "textRun": { - "content": "Who are your users? At a high-level, what are they doing?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 71, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Users’ needs and goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 83, - "textRun": { - "content": "What are the high-level needs and goals for each user class?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 84, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Current solutions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 125, - "textRun": { - "content": "What existing solutions do users have to achieve their goals? (note: these need not be technical solutions)", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 83, - "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" - } - } - }, - { - "endIndex": 39, - "textRun": { - "content": "Users’ obstacles to meeting their goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 39, - "endIndex": 40, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 82, - "textRun": { - "content": "Why are users not able to meet their goal?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 83, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Problem statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 138, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 137, - "textRun": { - "content": "Briefly state the problems that your project will aim to solve (but not a solution yet!), using your previous responses", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 137, - "endIndex": 138, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 517800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2785400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 11, - "textRun": { - "content": "User class:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 11, - "endIndex": 13, - "textRun": { - "content": " \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 365, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 365, - "textRun": { - "content": "Mentors and mentees in networked work environments working to solve complex, ill-structured problems that have vaguely structured goals and constraints, and often multiple solutions. Working on these problems involves continually planning and re-planning around changing needs and constraints, often soliciting support from others in the organization.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 365, - "endIndex": 366, - "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" - } - } - }, - { - "startIndex": 365, - "endIndex": 366, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 366, - "endIndex": 389, - "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" - } - } - }, - { - "startIndex": 366, - "endIndex": 389, - "textRun": { - "content": "User Characteristics: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 389, - "endIndex": 586, - "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" - } - } - }, - { - "startIndex": 389, - "endIndex": 586, - "textRun": { - "content": "Mentors possess expertise in the organization’s area of work, various resources in the organization, effective work practices, as well as addressing problems that commonly arise in the workspace. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 44, - "textRun": { - "content": "Mentors want to utilize their expertise to:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 83, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 44, - "endIndex": 83, - "textRun": { - "content": "Know when their mentees are struggling\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 127, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 83, - "endIndex": 127, - "textRun": { - "content": "Understand why their mentees are struggling\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 213, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 127, - "endIndex": 213, - "textRun": { - "content": "Provide tailored strategy to help their mentees overcome what they’re struggling with\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 213, - "endIndex": 296, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 213, - "endIndex": 296, - "textRun": { - "content": "Help them become better learners without spending an overwhelming amount of time. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "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" - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 297, - "endIndex": 512, - "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" - } - } - }, - { - "startIndex": 297, - "endIndex": 512, - "textRun": { - "content": "When tackling complex tasks, mentees often encounter problems that require support from others because they do not have the resources or skills to address the work needs themselves. When this happens, they want to:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 512, - "endIndex": 621, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 512, - "endIndex": 621, - "textRun": { - "content": "Utilize the resources in their work network such as venues, people, and tools to solve their problem at hand\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 621, - "endIndex": 777, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 621, - "endIndex": 777, - "textRun": { - "content": "Learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 777, - "endIndex": 833, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 777, - "endIndex": 833, - "textRun": { - "content": "Do so in a way which is more sustainable and enjoyable.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "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" - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "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" - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.pybpe9m23two": { - "listId": "kix.pybpe9m23two", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.z71lbhkwuvo3": { - "listId": "kix.z71lbhkwuvo3", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 264, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "1.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 31, - "textRun": { - "content": "Online/offline communication", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 264, - "textRun": { - "content": ": mentor contacts mentees through professional messaging platforms such as Slack, email, or meet with mentees in person to discuss their struggles. Mentees can also contact mentors to ask questions and get help when they are stuck. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 264, - "endIndex": 265, - "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" - } - } - }, - { - "startIndex": 264, - "endIndex": 265, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 265, - "endIndex": 293, - "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" - } - } - }, - { - "startIndex": 265, - "endIndex": 267, - "textRun": { - "content": "2.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 267, - "endIndex": 268, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 268, - "endIndex": 274, - "textRun": { - "content": "Mentor", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 274, - "endIndex": 275, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 275, - "endIndex": 291, - "textRun": { - "content": "Manually Monitor", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 291, - "endIndex": 293, - "textRun": { - "content": ":\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 293, - "endIndex": 435, - "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" - } - } - }, - { - "startIndex": 293, - "endIndex": 435, - "textRun": { - "content": "With workspaces becoming increasingly digitized, mentor can manually check resources and notify students when they see ineffective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 435, - "endIndex": 436, - "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" - } - } - }, - { - "startIndex": 435, - "endIndex": 436, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 436, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 436, - "endIndex": 438, - "textRun": { - "content": "3.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 438, - "endIndex": 439, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 439, - "endIndex": 465, - "textRun": { - "content": "Workspace automation tools", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 465, - "endIndex": 467, - "textRun": { - "content": ":\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 586, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 586, - "textRun": { - "content": "Mentor can use workspace automation tools such as Slack and Zapier to detect work needs and facilitate work processes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 586, - "endIndex": 587, - "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" - } - } - }, - { - "startIndex": 586, - "endIndex": 587, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 587, - "endIndex": 613, - "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" - } - } - }, - { - "startIndex": 587, - "endIndex": 589, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 0.6 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 589, - "endIndex": 590, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 590, - "endIndex": 613, - "textRun": { - "content": "Orchestration Scripts:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 613, - "endIndex": 728, - "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" - } - } - }, - { - "startIndex": 613, - "endIndex": 728, - "textRun": { - "content": "Mentors can use the OS language to write scripts that surface support strategies at appropriate times and settings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 728, - "endIndex": 729, - "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" - } - } - }, - { - "startIndex": 728, - "endIndex": 729, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 729, - "endIndex": 730, - "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" - } - } - }, - { - "startIndex": 729, - "endIndex": 730, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.j2f6lbesv3dp": { - "listId": "kix.j2f6lbesv3dp", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.lrf6l3cv5yu7": { - "listId": "kix.lrf6l3cv5yu7", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "1.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 27, - "textRun": { - "content": " Mentor Contact Mentee: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 157, - "textRun": { - "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 180, - "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" - } - } - }, - { - "startIndex": 157, - "endIndex": 180, - "textRun": { - "content": "Mentee contact Mentor:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 440, - "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" - } - } - }, - { - "startIndex": 180, - "endIndex": 440, - "textRun": { - "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 440, - "endIndex": 441, - "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" - } - } - }, - { - "startIndex": 440, - "endIndex": 441, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 441, - "endIndex": 506, - "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" - } - } - }, - { - "startIndex": 441, - "endIndex": 443, - "textRun": { - "content": "2.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 443, - "endIndex": 506, - "textRun": { - "content": " Time-consuming and not scalable as organization grows in size\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 506, - "endIndex": 507, - "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" - } - } - }, - { - "startIndex": 506, - "endIndex": 507, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 507, - "endIndex": 702, - "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" - } - } - }, - { - "startIndex": 507, - "endIndex": 509, - "textRun": { - "content": "3.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 702, - "textRun": { - "content": " Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 702, - "endIndex": 1380, - "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" - } - } - }, - { - "startIndex": 702, - "endIndex": 874, - "textRun": { - "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 874, - "endIndex": 936, - "textRun": { - "content": "mentors tend to provide specific problem-solving strategies (c", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 936, - "endIndex": 955, - "textRun": { - "content": "ognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 955, - "endIndex": 968, - "textRun": { - "content": ") instead of ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 968, - "endIndex": 992, - "textRun": { - "content": "metacognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 992, - "endIndex": 1072, - "textRun": { - "content": " that ensure the problem is solved in ways that promote mentee’s personal growth", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1072, - "endIndex": 1380, - "textRun": { - "content": ". This is problematic because while the short-term goal of completing a specific task has been met, the underlying reason of why mentees were struggling with the task has been overlooked. In the long term, this underlying cause of struggling will likely cause many other problems for the mentor and mentees.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1380, - "endIndex": 1381, - "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" - } - } - }, - { - "startIndex": 1380, - "endIndex": 1381, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1381, - "endIndex": 1954, - "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" - } - } - }, - { - "startIndex": 1381, - "endIndex": 1383, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 0.6 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1383, - "endIndex": 1384, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1384, - "endIndex": 1405, - "textRun": { - "content": "Expression Challenge:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1405, - "endIndex": 1770, - "textRun": { - "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1770, - "endIndex": 1897, - "textRun": { - "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1897, - "endIndex": 1954, - "textRun": { - "content": " available through mentees' interaction with resources. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1954, - "endIndex": 1955, - "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" - } - } - }, - { - "startIndex": 1954, - "endIndex": 1955, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1955, - "endIndex": 2251, - "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" - } - } - }, - { - "startIndex": 1955, - "endIndex": 1961, - "textRun": { - "content": "Also, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1961, - "endIndex": 2028, - "textRun": { - "content": "Mentors often find it difficult to put themselves in mentee’s shoes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 2028, - "endIndex": 2251, - "textRun": { - "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.7w4lrivrcuw2": { - "listId": "kix.7w4lrivrcuw2", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 877, - "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" - } - } - }, - { - "endIndex": 877, - "textRun": { - "content": "Mentors want to utilize their expertise to help mentees achieve personal growth while tackling complex tasks in a networked workspace by understanding when and why mentees are struggling and providing tailored strategies. Mentors currently use tools like online/in person communication, and workspace automation tools to support their mentoring practice. However, these tools are either time-consuming, not scalable, or promotes task-specific cognitive strategies that have limited long-term benefits for the mentees. While the OS language allows mentors to surface support strategies at appropriate times and settings, 1) it’s still hard for them to know why mentees are struggling because mentors often find it difficult to put themselves in mentee’s shoe, and 2) they lack the tools to translate their high level understanding of work strategies to machine representations.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.7w4lrivrcuw2": { - "listId": "kix.7w4lrivrcuw2", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2785400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1481050, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 53, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "✅/❌ Have you clearly distinguished the user classes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "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" - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 54, - "endIndex": 118, - "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" - } - } - }, - { - "startIndex": 54, - "endIndex": 118, - "textRun": { - "content": "✅/❌ Do you state what your users are doing for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 183, - "textRun": { - "content": "✅/❌ Do you state the major characteristics for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 184, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 184, - "endIndex": 237, - "textRun": { - "content": "✅/❌ Have you generated personas for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 125, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 125, - "textRun": { - "content": "✅/❌ Are these goals things that your actual users want to do (and not things you think they should do)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 126, - "endIndex": 188, - "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" - } - } - }, - { - "startIndex": 126, - "endIndex": 188, - "textRun": { - "content": "✅/❌ Do you state why these goals are important to your users?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 189, - "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" - } - } - }, - { - "startIndex": 188, - "endIndex": 189, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 189, - "endIndex": 275, - "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" - } - } - }, - { - "startIndex": 189, - "endIndex": 275, - "textRun": { - "content": "✅/❌ Do you have evidence from your interviews or observations to support these goals?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "For each existing solution:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 122, - "textRun": { - "content": "✅/❌ Do you state how the current solution works, and how it is used to meet the users’ needs?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 217, - "textRun": { - "content": "✅/❌ Do you state what users think works well about the solution? What doesn’t work well? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 391, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 313, - "textRun": { - "content": "✅/❌ Do you state why is it bad that current solution doesn’t work at all or isn’t good enough? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 313, - "endIndex": 391, - "textRun": { - "content": "(hint: really try to empathize with your users to understand their struggles)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 98, - "textRun": { - "content": "✅/❌ Have you mapped out your user’s journey to understand their pain points?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 99, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 99, - "endIndex": 158, - "textRun": { - "content": "✅/❌ Do you understand why they are having these struggles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 158, - "endIndex": 159, - "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" - } - } - }, - { - "startIndex": 158, - "endIndex": 159, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 242, - "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" - } - } - }, - { - "startIndex": 159, - "endIndex": 242, - "textRun": { - "content": "✅/❌ Do you understand why these obstacles are problematic or painful for the user?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "For each problem statement:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 98, - "textRun": { - "content": "✅/❌ Does your problem statement address who the users/characters are?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 99, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 99, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Does your problem statement truly capture the core tension between the users’ needs and obstacles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 203, - "endIndex": 313, - "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" - } - } - }, - { - "startIndex": 203, - "endIndex": 313, - "textRun": { - "content": "✅/❌ Is your problem statement in the form, “User wants to do X, but can’t because Y, which is bad because Z”?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1481050, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2117e6dac59_1_48", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 41, - "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" - } - } - }, - { - "endIndex": 40, - "textRun": { - "content": "Mysore Template: Problem Statement {New}", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 41, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2117e6dac59_1_49", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "[Grace & Jordan]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 17, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_46:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_50", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_51", - "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": 29, - "paragraphMarker": { - "style": { - "indentStart": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "A is an obstacle (good job!)\n", - "style": {} - } - }, - { - "startIndex": 29, - "endIndex": 164, - "paragraphMarker": { - "style": { - "indentStart": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 29, - "endIndex": 82, - "textRun": { - "content": "I would rephrase b-3 to emphasize on the complexity, ", - "style": {} - } - }, - { - "startIndex": 82, - "endIndex": 103, - "textRun": { - "content": "which mentors/mentees", - "style": { - "underline": true - } - } - }, - { - "startIndex": 103, - "endIndex": 164, - "textRun": { - "content": " (especially mentees) do know have the bandwidth to process.\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_51" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_14", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_15", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 406900, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Desired User Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 79, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 78, - "textRun": { - "content": "What should users do? What should happen when they do it?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 78, - "endIndex": 79, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Obstacles to user outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 113, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 112, - "textRun": { - "content": "Where do existing solutions go wrong? Why can the users currently not meet their goal?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 112, - "endIndex": 113, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Design Characteristic\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 70, - "textRun": { - "content": "What is the core characteristic of your design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Argument for your design\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "textRun": { - "content": "Why would your design work? In other words, why would your characteristic overcome the obstacle to reach the outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 406900, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2892100, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 164, - "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" - } - } - }, - { - "endIndex": 164, - "textRun": { - "content": "A Mentors should be able to express their strategies into computer-executable scripts (OS scripts) to surface support strategies at appropriate times and settings.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 318, - "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" - } - } - }, - { - "startIndex": 165, - "endIndex": 318, - "textRun": { - "content": "B Mentors should strive to gain an in depth understanding of what mentees are struggling with, why they are struggling with it, and how they are working\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 318, - "endIndex": 319, - "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" - } - } - }, - { - "startIndex": 318, - "endIndex": 319, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 319, - "endIndex": 530, - "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" - } - } - }, - { - "startIndex": 319, - "endIndex": 530, - "textRun": { - "content": "C Given they can do B, mentors should help their mentees learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.z71lbhkwuvo3": { - "listId": "kix.z71lbhkwuvo3", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 34, - "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" - } - } - }, - { - "endIndex": 3, - "textRun": { - "content": "1. ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 31, - "textRun": { - "content": "Online/offline communication", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 34, - "textRun": { - "content": ": \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 58, - "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" - } - } - }, - { - "startIndex": 34, - "endIndex": 58, - "textRun": { - "content": "Mentor Contact Mentee: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 58, - "endIndex": 188, - "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" - } - } - }, - { - "startIndex": 58, - "endIndex": 188, - "textRun": { - "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 211, - "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" - } - } - }, - { - "startIndex": 188, - "endIndex": 211, - "textRun": { - "content": "Mentee contact Mentor:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 211, - "endIndex": 471, - "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" - } - } - }, - { - "startIndex": 211, - "endIndex": 471, - "textRun": { - "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 471, - "endIndex": 509, - "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" - } - } - }, - { - "startIndex": 471, - "endIndex": 509, - "textRun": { - "content": "-> can’t surface problems effectively\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "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" - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 510, - "endIndex": 538, - "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" - } - } - }, - { - "startIndex": 510, - "endIndex": 513, - "textRun": { - "content": "2. ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 513, - "endIndex": 538, - "textRun": { - "content": "Mentor Manually Monitor:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 538, - "endIndex": 603, - "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" - } - } - }, - { - "startIndex": 538, - "endIndex": 603, - "textRun": { - "content": "-> Time-consuming and not scalable as organization grows in size\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 603, - "endIndex": 604, - "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" - } - } - }, - { - "startIndex": 603, - "endIndex": 604, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 604, - "endIndex": 635, - "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" - } - } - }, - { - "startIndex": 604, - "endIndex": 607, - "textRun": { - "content": "3. ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 607, - "endIndex": 634, - "textRun": { - "content": "Workspace automation tools:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 634, - "endIndex": 635, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 635, - "endIndex": 827, - "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" - } - } - }, - { - "startIndex": 635, - "endIndex": 827, - "textRun": { - "content": "Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 827, - "endIndex": 1203, - "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" - } - } - }, - { - "startIndex": 827, - "endIndex": 998, - "textRun": { - "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So,", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 998, - "endIndex": 1001, - "textRun": { - "content": " ->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1001, - "endIndex": 1002, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1002, - "endIndex": 1064, - "textRun": { - "content": "mentors tend to provide specific problem-solving strategies (c", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1064, - "endIndex": 1083, - "textRun": { - "content": "ognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1083, - "endIndex": 1096, - "textRun": { - "content": ") instead of ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1096, - "endIndex": 1120, - "textRun": { - "content": "metacognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1120, - "endIndex": 1203, - "textRun": { - "content": " that ensure the problem is solved in ways that promote mentee’s personal growth. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1203, - "endIndex": 1204, - "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" - } - } - }, - { - "startIndex": 1203, - "endIndex": 1204, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1204, - "endIndex": 1220, - "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" - } - } - }, - { - "startIndex": 1204, - "endIndex": 1206, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1206, - "endIndex": 1219, - "textRun": { - "content": " OS Language:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1219, - "endIndex": 1220, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1220, - "endIndex": 1793, - "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" - } - } - }, - { - "startIndex": 1220, - "endIndex": 1240, - "textRun": { - "content": "Expression Challenge", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1240, - "endIndex": 1241, - "textRun": { - "content": ":", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1241, - "endIndex": 1606, - "textRun": { - "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1606, - "endIndex": 1609, - "textRun": { - "content": "-> ", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1609, - "endIndex": 1736, - "textRun": { - "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1736, - "endIndex": 1793, - "textRun": { - "content": " available through mentees' interaction with resources. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1793, - "endIndex": 1794, - "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" - } - } - }, - { - "startIndex": 1793, - "endIndex": 1794, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1794, - "endIndex": 2093, - "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" - } - } - }, - { - "startIndex": 1794, - "endIndex": 1800, - "textRun": { - "content": "Also, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1800, - "endIndex": 1801, - "textRun": { - "content": "-", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1801, - "endIndex": 1803, - "textRun": { - "content": "> ", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1803, - "endIndex": 1870, - "textRun": { - "content": "mentors often find it difficult to put themselves in mentee’s shoes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1870, - "endIndex": 2093, - "textRun": { - "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2093, - "endIndex": 2094, - "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" - } - } - }, - { - "startIndex": 2093, - "endIndex": 2094, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2094, - "endIndex": 2108, - "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" - } - } - }, - { - "startIndex": 2094, - "endIndex": 2108, - "textRun": { - "content": "5/31 Sprint 5\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2108, - "endIndex": 2226, - "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" - } - } - }, - { - "startIndex": 2108, - "endIndex": 2226, - "textRun": { - "content": "What is a VERY successful root cause analysis? = deep enough root cause to prevent similar issue from happening again\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 2226, - "endIndex": 2499, - "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" - } - } - }, - { - "startIndex": 2226, - "endIndex": 2499, - "textRun": { - "content": "\t-> student’s realization of deep cause and how to effectively avoid same thing in the future (e.g. didn’t understand that user study design need obstacle, keep in mind in the future) (e.g. metacognitive barriers, if not resolved, very likely to lead to same/other issues)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2499, - "endIndex": 2589, - "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" - } - } - }, - { - "startIndex": 2499, - "endIndex": 2589, - "textRun": { - "content": "\t-> mentor gained new understanding of deep cause, class of issue, ways to approach issue\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2589, - "endIndex": 2710, - "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" - } - } - }, - { - "startIndex": 2589, - "endIndex": 2710, - "textRun": { - "content": "\t-> of course, current issue is resolved = student know how to improve, mentor know what happened beyond surface signals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2710, - "endIndex": 2711, - "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" - } - } - }, - { - "startIndex": 2710, - "endIndex": 2711, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2711, - "endIndex": 2745, - "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" - } - } - }, - { - "startIndex": 2711, - "endIndex": 2744, - "textRun": { - "content": "Obstacles to root cause analysis:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 2744, - "endIndex": 2745, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2745, - "endIndex": 2773, - "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" - } - } - }, - { - "startIndex": 2745, - "endIndex": 2773, - "textRun": { - "content": "\trecall on the spot is hard\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2773, - "endIndex": 2954, - "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" - } - } - }, - { - "startIndex": 2773, - "endIndex": 2954, - "textRun": { - "content": "\tlack of context to get deep, because deeper causes are often more specific to the situation/student (e.g. misunderstanding specific to one student, personal metacognitive barrier)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 315, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 315, - "textRun": { - "content": " A block-based scripting environment in which mentors can quickly and easily express their strategies into computer-executable scripts. OSE aims to enable mentors to express their thoughts freely at their natural level of thinking, by providing them with low-level data as well as high-level pre-built functions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 315, - "endIndex": 316, - "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" - } - } - }, - { - "startIndex": 315, - "endIndex": 316, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 316, - "endIndex": 703, - "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" - } - } - }, - { - "startIndex": 316, - "endIndex": 318, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 318, - "endIndex": 703, - "textRun": { - "content": " OSE provides a procedural scripting process that includes a script structure (first specify the scope of the script, then construct a detector and strategies) and guidelines (e.g. “users always forget to specify when their script should be executed, have you specified that in your script?”) to guide users to think in a way that align with the OS script structure and execution flow\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 703, - "endIndex": 704, - "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" - } - } - }, - { - "startIndex": 703, - "endIndex": 704, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 704, - "endIndex": 810, - "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" - } - } - }, - { - "startIndex": 704, - "endIndex": 706, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 706, - "endIndex": 810, - "textRun": { - "content": " OSE guides mentor to scaffold and form hypotheses about potential root causes underlying the situation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 810, - "endIndex": 811, - "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" - } - } - }, - { - "startIndex": 810, - "endIndex": 811, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 811, - "endIndex": 913, - "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" - } - } - }, - { - "startIndex": 811, - "endIndex": 813, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 813, - "endIndex": 913, - "textRun": { - "content": " OSE help mentors diagnose key root causes by promoting context-awareness of the mentee’s situation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 913, - "endIndex": 914, - "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" - } - } - }, - { - "startIndex": 913, - "endIndex": 914, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 914, - "endIndex": 1027, - "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" - } - } - }, - { - "startIndex": 914, - "endIndex": 1027, - "textRun": { - "content": "-> OSE guide mentors to formulate tailored strategies by prompting them to design strategies for each root cause\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1027, - "endIndex": 1028, - "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" - } - } - }, - { - "startIndex": 1027, - "endIndex": 1028, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1028, - "endIndex": 1029, - "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" - } - } - }, - { - "startIndex": 1028, - "endIndex": 1029, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1029, - "endIndex": 1030, - "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" - } - } - }, - { - "startIndex": 1029, - "endIndex": 1030, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1030, - "endIndex": 1031, - "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" - } - } - }, - { - "startIndex": 1030, - "endIndex": 1031, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1031, - "endIndex": 1263, - "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" - } - } - }, - { - "startIndex": 1031, - "endIndex": 1263, - "textRun": { - "content": "-> Depend on the mentor to explain why their strategies are important, but mentors don’t always explain or have it in mind, and mentees neither have the background knowledge to understand it nor the mindset to contemplate the whys.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1263, - "endIndex": 1420, - "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" - } - } - }, - { - "startIndex": 1263, - "endIndex": 1420, - "textRun": { - "content": "-> after script triggers, before discussion, both mentor and mentee prepare using the same schema to establish a common ground upon which to build diagnosis\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1420, - "endIndex": 1514, - "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" - } - } - }, - { - "startIndex": 1420, - "endIndex": 1514, - "textRun": { - "content": "-> user formulate hypothesis and write down potential root causes they currently have in mind\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 240, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 240, - "textRun": { - "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 240, - "endIndex": 241, - "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" - } - } - }, - { - "startIndex": 240, - "endIndex": 241, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 241, - "endIndex": 431, - "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" - } - } - }, - { - "startIndex": 241, - "endIndex": 243, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 243, - "endIndex": 431, - "textRun": { - "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 431, - "endIndex": 432, - "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" - } - } - }, - { - "startIndex": 431, - "endIndex": 432, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 432, - "endIndex": 742, - "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" - } - } - }, - { - "startIndex": 432, - "endIndex": 434, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 434, - "endIndex": 742, - "textRun": { - "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing so that they can help mentees achieve better long-term growth through tailored strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 742, - "endIndex": 743, - "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" - } - } - }, - { - "startIndex": 742, - "endIndex": 743, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 743, - "endIndex": 1002, - "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" - } - } - }, - { - "startIndex": 743, - "endIndex": 745, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 745, - "endIndex": 1002, - "textRun": { - "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1002, - "endIndex": 1003, - "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" - } - } - }, - { - "startIndex": 1002, - "endIndex": 1003, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1003, - "endIndex": 1004, - "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" - } - } - }, - { - "startIndex": 1003, - "endIndex": 1004, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2892100, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1469600, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "✅/❌ Is this a real example of what the user wants to be able to do?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 271, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 271, - "textRun": { - "content": "✅/❌ Is your outcome written in a way that will be measurable when you test? (i.e., will you be able to know that your design characteristic successfully helped your user achieve their desired outcome?)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "✅/❌ Does this obstacle encompass a core user struggle?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 152, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 152, - "textRun": { - "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired outcome from being reached?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 152, - "endIndex": 153, - "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" - } - } - }, - { - "startIndex": 152, - "endIndex": 153, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 332, - "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" - } - } - }, - { - "startIndex": 153, - "endIndex": 332, - "textRun": { - "content": "✅/❌ Does the obstacle present an argument (reason) behind why existing designs are not reaching the outcome (as opposed to just rephrasing that the outcome is not being reached)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 332, - "endIndex": 333, - "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" - } - } - }, - { - "startIndex": 332, - "endIndex": 333, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 333, - "endIndex": 436, - "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" - } - } - }, - { - "startIndex": 333, - "endIndex": 436, - "textRun": { - "content": "✅/❌ Is the statement of the obstacle something that is concrete enough to be measurable or observable?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 110, - "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" - } - } - }, - { - "endIndex": 110, - "textRun": { - "content": "✅/❌ Is your characteristic sufficiently detailed such that someone could go and implement it as you intended?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 110, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 110, - "endIndex": 111, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 342, - "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" - } - } - }, - { - "startIndex": 111, - "endIndex": 342, - "textRun": { - "content": "✅/❌ Does the characteristic clearly distinguish your design from other possible designs (especially existing designs that do not solve the problem)? (i.e., are you sure that it is not too similar to other, unsuccessful solutions?)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 342, - "endIndex": 343, - "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" - } - } - }, - { - "startIndex": 342, - "endIndex": 343, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 343, - "endIndex": 446, - "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" - } - } - }, - { - "startIndex": 343, - "endIndex": 446, - "textRun": { - "content": "✅/❌ Does your proposed characteristic actually resolve the obstacle and help the user meet their goal?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 107, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 34, - "textRun": { - "content": "how", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 107, - "textRun": { - "content": " the characteristic overcomes the obstacle to reach the desired outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 108, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 108, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Does this argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 142, - "textRun": { - "content": "why", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 215, - "textRun": { - "content": " the characteristic overcomes the obstacle to reach the desired outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1469600, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_16", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 39, - "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" - } - } - }, - { - "endIndex": 38, - "textRun": { - "content": "Mysore Template: Design Argument {New}", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 38, - "endIndex": 39, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_17", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_14:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_18", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_19", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_19" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_26", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_27", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 729550, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Desired Interface Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 174, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 173, - "textRun": { - "content": "What do you want your interface to enable users to do? Why is having this interface outcome or feature important to realizing your design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 173, - "endIndex": 174, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Obstacle to Interface Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 30, - "endIndex": 160, - "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" - } - } - }, - { - "startIndex": 30, - "endIndex": 159, - "textRun": { - "content": "How could things go wrong in trying to create an interface feature that instantiates the design argument? Why might this happen? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 160, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Design Inspirations\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 87, - "textRun": { - "content": "Has a similar problem been solved in any other domain? If so, how?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Interface Feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 233, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 233, - "textRun": { - "content": "What is the feature or affordance that your system provides to overcome the interface obstacle to reach the desired interface outcome? How is this feature distinguished from existing approaches that would not work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Argument for your interface feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 127, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 127, - "textRun": { - "content": "Why would your interface feature overcome the obstacle to reaching your interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 729550, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2720275, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 164, - "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" - } - } - }, - { - "endIndex": 164, - "textRun": { - "content": "A Mentors should be able to express their strategies into computer-executable scripts (OS scripts) to surface support strategies at appropriate times and settings.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 319, - "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" - } - } - }, - { - "startIndex": 165, - "endIndex": 319, - "textRun": { - "content": "B Mentors should be able to gain an in depth understanding of what mentees are struggling with, why they are struggling with it, and how they are working\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 319, - "endIndex": 320, - "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" - } - } - }, - { - "startIndex": 319, - "endIndex": 320, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 320, - "endIndex": 542, - "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" - } - } - }, - { - "startIndex": 320, - "endIndex": 542, - "textRun": { - "content": "C Given they can do B, mentors should be able to help their mentees learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 542, - "endIndex": 543, - "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" - } - } - }, - { - "startIndex": 542, - "endIndex": 543, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 218, - "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" - } - } - }, - { - "endIndex": 218, - "textRun": { - "content": "The level of abstraction the blocks get at is tricky. How do you find a way to present the code constructs in a more high-level form without it being too generic/hard to understand what it exactly does on the backend?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 219, - "endIndex": 224, - "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" - } - } - }, - { - "startIndex": 219, - "endIndex": 224, - "textRun": { - "content": "TODO\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "TODO\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 139, - "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" - } - } - }, - { - "endIndex": 139, - "textRun": { - "content": "-> A block-based scripting environment with human-readable blocks that includes low-level data as well as high-level pre-built functions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "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" - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 140, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 140, - "endIndex": 202, - "textRun": { - "content": "-> OSE provides a procedural scripting process that includes:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 332, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 202, - "endIndex": 215, - "textRun": { - "content": "A step guide ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 332, - "textRun": { - "content": "that explains the script structure (first specify the scope of the script, then construct a detector and strategies)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 332, - "endIndex": 333, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 332, - "endIndex": 333, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 333, - "endIndex": 574, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 333, - "endIndex": 343, - "textRun": { - "content": "Guidelines", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 343, - "endIndex": 574, - "textRun": { - "content": " for writing scripts (e.g. “users always forget to specify when their script should be executed, have you specified that in your script?”) to guide users to think in a way that align with the OS script structure and execution flow\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 574, - "endIndex": 841, - "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" - } - } - }, - { - "startIndex": 574, - "endIndex": 841, - "textRun": { - "content": "-> OSE provides a workflow that starts by breaking down a problem into hypotheses about potential root causes, then diagnose key root causes based on the context, and lastly enact a tailored strategy to address the key root cause. This workflow is achieved through: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 841, - "endIndex": 941, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 841, - "endIndex": 860, - "textRun": { - "content": "Scaffolding prompts", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 860, - "endIndex": 941, - "textRun": { - "content": " that prompt the user to think about different root causes behind the situation.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 941, - "endIndex": 942, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 941, - "endIndex": 942, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 942, - "endIndex": 1024, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 942, - "endIndex": 955, - "textRun": { - "content": "Alert Message", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 955, - "endIndex": 1024, - "textRun": { - "content": " that provides context information to help diagnose key root causes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1024, - "endIndex": 1025, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 1024, - "endIndex": 1025, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1025, - "endIndex": 1140, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 1025, - "endIndex": 1087, - "textRun": { - "content": "One-to-one or one-to-more mapping of root cause to strategies ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1087, - "endIndex": 1140, - "textRun": { - "content": "that guide mentors to formulate tailored strategies \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.mxioyg52qv53": { - "listId": "kix.mxioyg52qv53", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "TODO\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.tiarl0j5q73": { - "listId": "kix.tiarl0j5q73", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2720275, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1355675, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 98, - "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" - } - } - }, - { - "endIndex": 98, - "textRun": { - "content": "✅/❌ Do you explain why your interface outcome is important for implementing your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired interface outcome from being reached?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 361, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 361, - "textRun": { - "content": "✅/❌ Does the obstacle present an argument (reason) behind why it might be difficult to create an interface feature that meets the outcome? In other words, do you argue why the obstacle may hinder efficiency, learnability, or safety within your interface?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 101, - "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" - } - } - }, - { - "endIndex": 101, - "textRun": { - "content": "✅/❌ Did you consider domains far from the one of your project but whose interface needs are similar?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 101, - "endIndex": 102, - "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" - } - } - }, - { - "startIndex": 101, - "endIndex": 102, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 102, - "endIndex": 225, - "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" - } - } - }, - { - "startIndex": 102, - "endIndex": 225, - "textRun": { - "content": "✅/❌ For each idea, do you explain why the obstacle they attempt to overcome is similar to the obstacle your interface has?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 69, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "✅/❌ Does your feature consider aspects of efficiency in interaction?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 141, - "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" - } - } - }, - { - "startIndex": 70, - "endIndex": 141, - "textRun": { - "content": "✅/❌ Does your feature consider aspects of learnability in interaction?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 141, - "endIndex": 142, - "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" - } - } - }, - { - "startIndex": 141, - "endIndex": 142, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 207, - "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" - } - } - }, - { - "startIndex": 142, - "endIndex": 207, - "textRun": { - "content": "✅/❌ Does your feature consider aspects of safety in interaction?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "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" - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 208, - "endIndex": 319, - "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" - } - } - }, - { - "startIndex": 208, - "endIndex": 319, - "textRun": { - "content": "✅/❌ Does your proposed feature actually resolve the interface obstacle and meet the desired interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 130, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 34, - "textRun": { - "content": "how", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 130, - "textRun": { - "content": " the interface feature overcomes the interface obstacle to reach the desired interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 130, - "endIndex": 131, - "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" - } - } - }, - { - "startIndex": 130, - "endIndex": 131, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 131, - "endIndex": 261, - "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" - } - } - }, - { - "startIndex": 131, - "endIndex": 162, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 162, - "endIndex": 165, - "textRun": { - "content": "why", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 261, - "textRun": { - "content": " the interface feature overcomes the interface obstacle to reach the desired interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1355675, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_28", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 32, - "textRun": { - "content": "Mysore Template: Interface Model {New}", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 32, - "endIndex": 33, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_29", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "[Grace & Jordan]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 17, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_26:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_30", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_31", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_31" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_32", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_33", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 696425, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Restate an interface feature you plan to implement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 155, - "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" - } - } - }, - { - "startIndex": 51, - "endIndex": 155, - "textRun": { - "content": "Based on your interface model, what is one feature or interaction you want to implement in your system?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Desired system outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 112, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 111, - "textRun": { - "content": "What does your system need to be able to do in order to implement the interface feature?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Obstacle to reaching system outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 127, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 126, - "textRun": { - "content": "What could go wrong when trying to implement the interface feature? Why might this happen?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 126, - "endIndex": 127, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "System method or technique\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 209, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 209, - "textRun": { - "content": "What is the method or technique that you system includes in order to implement the interface feature? How is this feature distinguished from existing approaches that would not work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Argument for your system method/technique\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 121, - "textRun": { - "content": "Why would your approach overcome the obstacle to reaching your system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 696425, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2833525, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2833525, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1242425, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "No checklist questions. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 212, - "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" - } - } - }, - { - "endIndex": 212, - "textRun": { - "content": "✅/❌ Do you explain why your system outcome is important for implementing your interface feature? In other words, do you consider why would your interaction would fail without the system outcome you have written?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 102, - "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" - } - } - }, - { - "endIndex": 102, - "textRun": { - "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired system outcome from being reached?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 102, - "endIndex": 103, - "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" - } - } - }, - { - "startIndex": 102, - "endIndex": 103, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 234, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 234, - "textRun": { - "content": "✅/❌ Does the obstacle present an argument (reason) behind why it might be difficult to implement an interface feature as intended?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 234, - "endIndex": 235, - "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" - } - } - }, - { - "startIndex": 234, - "endIndex": 235, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 235, - "endIndex": 369, - "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" - } - } - }, - { - "startIndex": 235, - "endIndex": 369, - "textRun": { - "content": "✅/❌ Do you consider existing implementations (e.g., algorithms; APIs; other deployed systems) that can already address this obstacle?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 117, - "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" - } - } - }, - { - "endIndex": 117, - "textRun": { - "content": "✅/❌Is your description of the proposed method or technique precise enough that someone else can go and implement it?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 117, - "endIndex": 118, - "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" - } - } - }, - { - "startIndex": 117, - "endIndex": 118, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 223, - "textRun": { - "content": "✅/❌ Does your proposed feature actually resolve the system obstacle and meet the desired system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 130, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 34, - "textRun": { - "content": "how", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 130, - "textRun": { - "content": " the system method/technique overcomes the system obstacle to reach the desired system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 130, - "endIndex": 131, - "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" - } - } - }, - { - "startIndex": 130, - "endIndex": 131, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 131, - "endIndex": 261, - "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" - } - } - }, - { - "startIndex": 131, - "endIndex": 162, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 162, - "endIndex": 165, - "textRun": { - "content": "why", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 261, - "textRun": { - "content": " the system method/technique overcomes the system obstacle to reach the desired system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1242425, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_34", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Mysore Template: System Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_35", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_32:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_36", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_37", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_37" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g226bd032f2e_0_0", - "pageElements": [ - { - "objectId": "g226bd032f2e_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 63, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 62, - "textRun": { - "content": "Takeaways from User Study Root Cause Analysis", - "style": {} - } - }, - { - "startIndex": 62, - "endIndex": 63, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g226bd032f2e_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g226bd032f2e_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g226bd032f2e_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g226bd032f2e_0_3" - } - }, - "isSkipped": true - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g226bd032f2e_0_4", - "pageElements": [ - { - "objectId": "g226bd032f2e_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 188, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "endIndex": 188, - "textRun": { - "content": "When trying to describing the strategy. It is something I have gotten coaching about, when I see a demo with dummy inputs, it frustrates me because we should aim to make it understanding.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 462, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 188, - "endIndex": 462, - "textRun": { - "content": "As writing the strategy and the reasons why, I was thinking on my feet. It was hard to explain why this is an important practice, because that’s what I’ve been told. I got feedback on in the past, I didn’t question so much the why until I have to explain it in the moment. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 462, - "endIndex": 930, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 462, - "endIndex": 930, - "textRun": { - "content": "‘Knowing the example you’re building towards can help you scope to what features is gonna just make that one example work’ ‘beyond completing the tasks themselves, the good representation for a tech story is demonstrating and checking if the current implementation supports the user journey, so it needs to be a real user journey, and we have to put ourselves in the shoes.’\u000bgot into the whys of why this important. Planning towards a demo, or testing through cases. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 930, - "endIndex": 1030, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.wzabc648okj6", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 930, - "endIndex": 1030, - "textRun": { - "content": "How did you construct your detector, things to pay attention to, direct ways of trying to detect it\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 1030, - "endIndex": 1068, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.wzabc648okj6", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 1030, - "endIndex": 1067, - "textRun": { - "content": "GitHub reminded me ways of doing tech", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 1067, - "endIndex": 1068, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.81n4ev1xoxu8": { - "listId": "kix.81n4ev1xoxu8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.nm59wlfv7kbh": { - "listId": "kix.nm59wlfv7kbh", - "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 - } - } - } - } - }, - "kix.wzabc648okj6": { - "listId": "kix.wzabc648okj6", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 239, - "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" - } - } - }, - { - "endIndex": 239, - "textRun": { - "content": "Recall - RC2 was something Oscar did run into. Also had RC3 “didn’t realized it was a priority”, in retrospect, the strategy would be have really great to explain to him, not just Ryan told me to do the demo, but why is the demo important\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 239, - "endIndex": 240, - "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" - } - } - }, - { - "startIndex": 239, - "endIndex": 240, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 48, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Having scaffolding about how to find the causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "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" - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 113, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.31gr3vlcpg1b", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 49, - "endIndex": 113, - "textRun": { - "content": "Broke down into different variables, focus on each individually\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 113, - "endIndex": 325, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.31gr3vlcpg1b", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 113, - "endIndex": 325, - "textRun": { - "content": "I’m a fan of specifying concept variables for myself and visually group things. It was nice to leave things separate, so I can choose when to work on things and address them separately if some parts doesn’t run.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 325, - "endIndex": 365, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.31gr3vlcpg1b", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 325, - "endIndex": 365, - "textRun": { - "content": "Think about how the detector would fail\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 365, - "endIndex": 394, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.o2463xicuh0m", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 365, - "endIndex": 394, - "textRun": { - "content": "Break situation into signals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 394, - "endIndex": 422, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.o2463xicuh0m", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 394, - "endIndex": 421, - "textRun": { - "content": "Contain logic was intuitive", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 421, - "endIndex": 422, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.21n3yx908xp4": { - "listId": "kix.21n3yx908xp4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.31gr3vlcpg1b": { - "listId": "kix.31gr3vlcpg1b", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.4db35bz3of4o": { - "listId": "kix.4db35bz3of4o", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.fhc3css0xp70": { - "listId": "kix.fhc3css0xp70", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.o2463xicuh0m": { - "listId": "kix.o2463xicuh0m", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "endIndex": 30, - "textRun": { - "content": "Root cause: not case specific\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 30, - "endIndex": 89, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 30, - "endIndex": 89, - "textRun": { - "content": "Root cause analysis easier on specific part of the problem\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 89, - "endIndex": 137, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 89, - "endIndex": 137, - "textRun": { - "content": "Scaffolding and keep asking follow up questions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 137, - "endIndex": 211, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 137, - "endIndex": 211, - "textRun": { - "content": "Good balance of challenging student (reflection e,g.) and support student\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 211, - "endIndex": 508, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "5.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 211, - "endIndex": 508, - "textRun": { - "content": "Student’s perspective: personal growth from root cause analysis\u000b-> Challenging Jordan to reflect, forced to reflect on decision I made while still feeling supported, drawing connections\u000b-> student have learned something new about themselves, their way of working\u000b-> growth, avoiding same mistake,\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 508, - "endIndex": 574, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "6.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 508, - "endIndex": 574, - "textRun": { - "content": "SIG meeting: focus on sprint, risk, plan for the future vs focus \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 574, - "endIndex": 949, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "7.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 574, - "endIndex": 949, - "textRun": { - "content": "Ineffective about list of RC:\u000b-> discouraging follow-up questions, because it might be encouraging a specific of approaching the issue (kapil: ruling out root cause)\u000b-> multiple causes + specific to students and project = list of root cause not inclusive\u000b-> lack of scaffolding\u000b-> mentor’s various understanding of what root cause is (action-oriented vs reflection-oriented)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 949, - "endIndex": 1412, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "8.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 949, - "endIndex": 1412, - "textRun": { - "content": "How to help mentor scaffold hypothesis:\u000b-> reflection-oriented: challenge student to reflect -> follow-up questions\u000b-> make student feel supported while they do reflection\u000b-> Awareness for multiple and hidden causes\u000b-> establish clear goal: none-case-specific student personal growth -> assess mentor’s level of understanding in relation to this goal -> ‘who can define the appropriate depth of root cause analysis? -> help mentors best determine for themselves’\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1412, - "endIndex": 1413, - "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" - } - } - }, - { - "startIndex": 1412, - "endIndex": 1413, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1413, - "endIndex": 1425, - "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" - } - } - }, - { - "startIndex": 1413, - "endIndex": 1425, - "textRun": { - "content": "Limitation:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1425, - "endIndex": 1515, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.odaj9w5s8tdv", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1425, - "endIndex": 1515, - "textRun": { - "content": "Might have been more open with Ryan (talk with a tone that makes students feel supported)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.anp8oh6h78lg": { - "listId": "kix.anp8oh6h78lg", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.odaj9w5s8tdv": { - "listId": "kix.odaj9w5s8tdv", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 120, - "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" - } - } - }, - { - "endIndex": 120, - "textRun": { - "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "textRun": { - "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "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" - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 986350, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1016775, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 4854875, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g226bd032f2e_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g226bd032f2e_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g226bd032f2e_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g226bd032f2e_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g226bd032f2e_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g226bd032f2e_0_9" - } - }, - "isSkipped": true - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g24afab86e39_0_11", - "pageElements": [ - { - "objectId": "g24afab86e39_0_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 57, - "textRun": { - "content": "Takeaways from User Testing (With HaoQi)", - "style": {} - } - }, - { - "startIndex": 57, - "endIndex": 58, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g24afab86e39_0_11:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g24afab86e39_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g24afab86e39_0_14", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g24afab86e39_0_14" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g24afab86e39_0_5", - "pageElements": [ - { - "objectId": "g24afab86e39_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Goal for this activity: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 93, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 25, - "endIndex": 93, - "textRun": { - "content": "Observe to see if OSE would be helpful during the diagnosis process\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 186, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 93, - "endIndex": 186, - "textRun": { - "content": "Learn how useful each affordances were and how the mentor used them in his diagnosis process\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.81n4ev1xoxu8": { - "listId": "kix.81n4ev1xoxu8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.nm59wlfv7kbh": { - "listId": "kix.nm59wlfv7kbh", - "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 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 3, - "textRun": { - "content": "yes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 4, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 67, - "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" - } - } - }, - { - "endIndex": 67, - "textRun": { - "content": "Mentor uses the affordances in according to his diagnosis process.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 67, - "endIndex": 68, - "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" - } - } - }, - { - "startIndex": 67, - "endIndex": 68, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.21n3yx908xp4": { - "listId": "kix.21n3yx908xp4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.4db35bz3of4o": { - "listId": "kix.4db35bz3of4o", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.fhc3css0xp70": { - "listId": "kix.fhc3css0xp70", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 100, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.gizt07tdx4rt", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "endIndex": 100, - "textRun": { - "content": "Lack visual identifier for mentor to identify what project or whose project they are diagnosing for\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 100, - "endIndex": 186, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.gizt07tdx4rt", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 100, - "endIndex": 186, - "textRun": { - "content": "Mentors don’t want their notes to be seen, which prevent mentees to see the interface\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 186, - "endIndex": 387, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.gizt07tdx4rt", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 186, - "endIndex": 387, - "textRun": { - "content": "List of root causes not quite right (a bit vague) : ex: sprint log stories tend to be vague (explanation: it’s not that students don’t plan anything in their stories, it’s that their stories is vague)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 387, - "endIndex": 641, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.gizt07tdx4rt", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 387, - "endIndex": 641, - "textRun": { - "content": "Mentor preferred to receive verbal update by asking question ( + asking mentees to open up their writing spaces) rather than looking at those documents themselves beforehand. (Writing things down is meant for the person who wrote them to stay organized)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.anp8oh6h78lg": { - "listId": "kix.anp8oh6h78lg", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.gizt07tdx4rt": { - "listId": "kix.gizt07tdx4rt", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 120, - "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" - } - } - }, - { - "endIndex": 120, - "textRun": { - "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "textRun": { - "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "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" - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 986350, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2935825, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2935825, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g24afab86e39_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g24afab86e39_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g24afab86e39_0_5:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g24afab86e39_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g24afab86e39_0_10", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g24afab86e39_0_10" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22408989adf_0_0", - "pageElements": [ - { - "objectId": "g22408989adf_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 46, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 45, - "textRun": { - "content": "Takeaways from Status Update", - "style": {} - } - }, - { - "startIndex": 45, - "endIndex": 46, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22408989adf_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22408989adf_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22408989adf_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22408989adf_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22408989adf_0_4", - "pageElements": [ - { - "objectId": "g22408989adf_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Goal for this activity: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 170, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 25, - "endIndex": 170, - "textRun": { - "content": "Let mentor and mentees collectively script for a situation that mentor have chosen, see if mentors discussing with students help improve scripts\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 170, - "endIndex": 229, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 170, - "endIndex": 229, - "textRun": { - "content": "Obtain comprehensive, good scripts that we can deploy soon\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.81n4ev1xoxu8": { - "listId": "kix.81n4ev1xoxu8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.nm59wlfv7kbh": { - "listId": "kix.nm59wlfv7kbh", - "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 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 3, - "textRun": { - "content": "yes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 4, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 57, - "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" - } - } - }, - { - "endIndex": 57, - "textRun": { - "content": "Mentors discussing with students helped improve scripts:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 125, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.4db35bz3of4o", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 57, - "endIndex": 125, - "textRun": { - "content": "“Brilliant Insights from students about what’s actually happening” \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 153, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.4db35bz3of4o", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 125, - "endIndex": 153, - "textRun": { - "content": "“Mentor is always guessing”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 221, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.4db35bz3of4o", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 153, - "endIndex": 221, - "textRun": { - "content": "“This time students directly tell me, came up with good strategies”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 221, - "endIndex": 354, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.4db35bz3of4o", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 221, - "endIndex": 354, - "textRun": { - "content": "Haoqi’s group contributed more than half of the root causes by thinking through challenges for each of them from personal experience\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 354, - "endIndex": 387, - "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" - } - } - }, - { - "startIndex": 354, - "endIndex": 387, - "textRun": { - "content": "Dani coming up with root causes:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 387, - "endIndex": 421, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.21n3yx908xp4", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 387, - "endIndex": 421, - "textRun": { - "content": "“Drawing from my past experience“\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 421, - "endIndex": 536, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.21n3yx908xp4", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 421, - "endIndex": 536, - "textRun": { - "content": "“Break down task of updating canvas into subtasks, failure of subtasks can lead to failure of the updating canvas”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 536, - "endIndex": 573, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.21n3yx908xp4", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 536, - "endIndex": 573, - "textRun": { - "content": "Some component of process that BROKE\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 573, - "endIndex": 636, - "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" - } - } - }, - { - "startIndex": 573, - "endIndex": 636, - "textRun": { - "content": "Ella: “hard to come up with causes that don’t feel circular” \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 636, - "endIndex": 730, - "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" - } - } - }, - { - "startIndex": 636, - "endIndex": 730, - "textRun": { - "content": "-> Why is coming up with root causes challenging for experienced mentors? = recall + guessing\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 730, - "endIndex": 870, - "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" - } - } - }, - { - "startIndex": 730, - "endIndex": 870, - "textRun": { - "content": "-> Why is coming up with root causes challenging for novice mentors? = recall + cognitive thinking + lack of understanding of deeper causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 870, - "endIndex": 871, - "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" - } - } - }, - { - "startIndex": 870, - "endIndex": 871, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.21n3yx908xp4": { - "listId": "kix.21n3yx908xp4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.4db35bz3of4o": { - "listId": "kix.4db35bz3of4o", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.fhc3css0xp70": { - "listId": "kix.fhc3css0xp70", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 159, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "endIndex": 159, - "textRun": { - "content": "Even for complex situations that mentors chose, mentors were able to express their high-level understanding of work strategies using the pre-built functions. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 277, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 159, - "endIndex": 277, - "textRun": { - "content": "Interesting approaches adopted by mentors -> new ways of scripting\u000b-> Not just scripts for when something bad happens\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 277, - "endIndex": 468, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 277, - "endIndex": 468, - "textRun": { - "content": "-> check-in/prevention scripts: when started building prototype, check to see if aligned with conceptual diagram/discuss roadblocks -> is root cause analysis suitable for prevention scripts?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 675, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 468, - "endIndex": 675, - "textRun": { - "content": "Scripting with students helps mentors understand the perspective of mentees by learning how the mentees are working, and what’s lacking in their understandings and what otherwise might have been overlooked.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.anp8oh6h78lg": { - "listId": "kix.anp8oh6h78lg", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 120, - "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" - } - } - }, - { - "endIndex": 120, - "textRun": { - "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "textRun": { - "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "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" - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 986350, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2935825, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2935825, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22408989adf_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22408989adf_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22408989adf_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22408989adf_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22408989adf_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22408989adf_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g223d36f6eaa_0_0", - "pageElements": [ - { - "objectId": "g223d36f6eaa_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 59, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "textRun": { - "content": "Takeaways from RC User Testing(with Dani)", - "style": {} - } - }, - { - "startIndex": 58, - "endIndex": 59, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g223d36f6eaa_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g223d36f6eaa_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g223d36f6eaa_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g223d36f6eaa_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g223d36f6eaa_0_4", - "pageElements": [ - { - "objectId": "g223d36f6eaa_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 47, - "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" - } - } - }, - { - "endIndex": 47, - "textRun": { - "content": "Procrastinating + feel overwhelmed by the task\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 47, - "endIndex": 48, - "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" - } - } - }, - { - "startIndex": 47, - "endIndex": 48, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 48, - "endIndex": 86, - "textRun": { - "content": "Focus too much on doing, not thinking\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 165, - "textRun": { - "content": "-> producing a prototype. they‘re not planning before they execute a user test\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 166, - "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" - } - } - }, - { - "startIndex": 165, - "endIndex": 166, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 166, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 166, - "endIndex": 198, - "textRun": { - "content": "Don’t know how to update canvas\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 199, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 199, - "endIndex": 223, - "textRun": { - "content": "Forgot to update canvas\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 223, - "endIndex": 224, - "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" - } - } - }, - { - "startIndex": 223, - "endIndex": 224, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 224, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 224, - "endIndex": 258, - "textRun": { - "content": "Don’t know where to update canvas\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 291, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 291, - "textRun": { - "content": "Don’t know what to say on canvas\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 291, - "endIndex": 292, - "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" - } - } - }, - { - "startIndex": 291, - "endIndex": 292, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 292, - "endIndex": 326, - "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" - } - } - }, - { - "startIndex": 292, - "endIndex": 326, - "textRun": { - "content": "“Drawing from my past experience“\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 326, - "endIndex": 441, - "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" - } - } - }, - { - "startIndex": 326, - "endIndex": 441, - "textRun": { - "content": "“Break down task of updating canvas into subtasks, failure of subtasks can lead to failure of the updating canvas”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 441, - "endIndex": 478, - "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" - } - } - }, - { - "startIndex": 441, - "endIndex": 478, - "textRun": { - "content": "Some component of process that BROKE\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1, - "endIndex": 48, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 47, - "textRun": { - "content": "Procrastinating + feel overwhelmed by the task", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 47, - "endIndex": 48, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 48, - "endIndex": 85, - "textRun": { - "content": "Total points committed -> few points\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 184, - "textRun": { - "content": "Strategy -> Ask if they’re using the sprint log, if they are, ask why they’re not committing point\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 184, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 184, - "endIndex": 185, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 185, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 185, - "endIndex": 223, - "textRun": { - "content": "Focus too much on doing, not thinking\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 223, - "endIndex": 302, - "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" - } - } - }, - { - "startIndex": 223, - "endIndex": 302, - "textRun": { - "content": "-> producing a prototype. they‘re not planning before they execute a user test\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 302, - "endIndex": 360, - "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" - } - } - }, - { - "startIndex": 302, - "endIndex": 360, - "textRun": { - "content": "-> 0 points committed, don’t even have stories filled out\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 360, - "endIndex": 380, - "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" - } - } - }, - { - "startIndex": 360, - "endIndex": 380, - "textRun": { - "content": "-> Time last edited\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 119, - "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" - } - } - }, - { - "endIndex": 119, - "textRun": { - "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "textRun": { - "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g223d36f6eaa_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g223d36f6eaa_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g223d36f6eaa_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g223d36f6eaa_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g223d36f6eaa_0_10", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g223d36f6eaa_0_10" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g23729163056_0_0", - "pageElements": [ - { - "objectId": "g23729163056_0_1", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 49, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 49, - "textRun": { - "content": "SP’23 Field Study\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g23729163056_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g23729163056_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g23729163056_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g23729163056_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g23729163056_0_4", - "pageElements": [ - { - "objectId": "g23729163056_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 65, - "textRun": { - "content": "Who will you test your prototype with? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4211800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "Goal 1:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 97, - "textRun": { - "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "textRun": { - "content": "If it helps, we can continue with this workflow.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "textRun": { - "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "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" - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "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" - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 239, - "endIndex": 305, - "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" - } - } - }, - { - "startIndex": 239, - "endIndex": 246, - "textRun": { - "content": "Goal 2:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 246, - "endIndex": 305, - "textRun": { - "content": " See what obstacles mentors face in diagnosing root causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "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" - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "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" - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "textRun": { - "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.txqi0c27zz40": { - "listId": "kix.txqi0c27zz40", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ynplpxhcweip": { - "listId": "kix.ynplpxhcweip", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 41, - "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" - } - } - }, - { - "endIndex": 13, - "textRun": { - "content": "Participants:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 41, - "textRun": { - "content": " 1 mentor and their mentees\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 41, - "endIndex": 42, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 41, - "endIndex": 42, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 54, - "textRun": { - "content": "Recruitment:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 54, - "endIndex": 85, - "textRun": { - "content": " Within DTR, already recruited\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 101, - "textRun": { - "content": "Communication: ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 101, - "endIndex": 121, - "textRun": { - "content": "Slack and in-person\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 136, - "textRun": { - "content": "Access issues:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 136, - "endIndex": 184, - "textRun": { - "content": " We may need temporary access to Slack channels\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5et11dq4lm66": { - "listId": "kix.5et11dq4lm66", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.vzvz2huetn83": { - "listId": "kix.vzvz2huetn83", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 6, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "endIndex": 6, - "textRun": { - "content": "Setup\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 6, - "endIndex": 262, - "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" - } - } - }, - { - "startIndex": 6, - "endIndex": 262, - "textRun": { - "content": "We will read each team’s sprintlogs, canvases, and slack channels to look for signs of struggling. We will draft a description of the problem, take the problem to three experienced mentors, and ask them to come up with a comprehensive list of root causes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 262, - "endIndex": 275, - "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" - } - } - }, - { - "startIndex": 262, - "endIndex": 275, - "textRun": { - "content": "+ strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 275, - "endIndex": 276, - "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" - } - } - }, - { - "startIndex": 275, - "endIndex": 276, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 276, - "endIndex": 288, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 276, - "endIndex": 288, - "textRun": { - "content": "Preparation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 288, - "endIndex": 382, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 288, - "endIndex": 382, - "textRun": { - "content": "Meet with Ryan before is SIG meeting to show him the signals, the root causes, and strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 382, - "endIndex": 451, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 382, - "endIndex": 451, - "textRun": { - "content": "Ryan will think about how he’s gonna use this information during SIG\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 451, - "endIndex": 554, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 451, - "endIndex": 554, - "textRun": { - "content": "Ryan will also examine some context information before SIG to help diagnose the problem if he wants to\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 554, - "endIndex": 555, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 554, - "endIndex": 555, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 555, - "endIndex": 566, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 555, - "endIndex": 566, - "textRun": { - "content": "During SIG\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 566, - "endIndex": 577, - "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" - } - } - }, - { - "startIndex": 566, - "endIndex": 577, - "textRun": { - "content": "Ryan will:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 577, - "endIndex": 638, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.ixxpl7mibqvo", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 577, - "endIndex": 638, - "textRun": { - "content": "Discuss this with his mentees to finish diagnose the problem\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 638, - "endIndex": 697, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.ixxpl7mibqvo", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 638, - "endIndex": 697, - "textRun": { - "content": "Enact strategy that they have designed for that root cause\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 697, - "endIndex": 698, - "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" - } - } - }, - { - "startIndex": 697, - "endIndex": 698, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 698, - "endIndex": 719, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 698, - "endIndex": 719, - "textRun": { - "content": "Post-study Interview\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 719, - "endIndex": 827, - "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" - } - } - }, - { - "startIndex": 719, - "endIndex": 827, - "textRun": { - "content": "We will interview mentors and mentees about how this framework has influenced their mentoring interactions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.50iaokq8q7xd": { - "listId": "kix.50iaokq8q7xd", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.f2d3x4uv8p06": { - "listId": "kix.f2d3x4uv8p06", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ixxpl7mibqvo": { - "listId": "kix.ixxpl7mibqvo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "RC design argument:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 114, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 114, - "textRun": { - "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 114, - "endIndex": 270, - "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" - } - } - }, - { - "startIndex": 114, - "endIndex": 270, - "textRun": { - "content": " “I didn’t think of xxx as a potential root cause but the list of root causes helped me realize that it’s a possible reason why my mentees are struggling.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 270, - "endIndex": 295, - "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" - } - } - }, - { - "startIndex": 270, - "endIndex": 295, - "textRun": { - "content": "-> Observations such as:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 295, - "endIndex": 401, - "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" - } - } - }, - { - "startIndex": 295, - "endIndex": 401, - "textRun": { - "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 401, - "endIndex": 402, - "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" - } - } - }, - { - "startIndex": 401, - "endIndex": 402, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 402, - "endIndex": 403, - "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" - } - } - }, - { - "startIndex": 402, - "endIndex": 403, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.y5c8yds0bxz1": { - "listId": "kix.y5c8yds0bxz1", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4211800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "textRun": { - "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "✅ Do you include who the users are, and how you will recruit them?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 148, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 148, - "textRun": { - "content": "✅ Do you include how you will communicate with your users during your study? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "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" - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 149, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 149, - "endIndex": 237, - "textRun": { - "content": "✅ Do you consider any access issues that may prevent you from running your user tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 91, - "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" - } - } - }, - { - "endIndex": 91, - "textRun": { - "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "textRun": { - "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "textRun": { - "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "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" - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "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" - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "textRun": { - "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "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" - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "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" - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "textRun": { - "content": "✅ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "textRun": { - "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "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" - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "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" - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "textRun": { - "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g23729163056_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g23729163056_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 15, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 14, - "textRun": { - "content": "Grace & Jordan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 14, - "endIndex": 15, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g23729163056_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g23729163056_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g23729163056_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g23729163056_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2211d100668_0_0", - "pageElements": [ - { - "objectId": "g2211d100668_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 72, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 71, - "textRun": { - "content": "Takeaways from New Prototype Testing with Gobi + Haoqi", - "style": {} - } - }, - { - "startIndex": 71, - "endIndex": 72, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2211d100668_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2211d100668_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2211d100668_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2211d100668_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2211d100668_0_4", - "pageElements": [ - { - "objectId": "g2211d100668_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 492100, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 492100, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "Goal 1:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 44, - "textRun": { - "content": " Test usability of the new prototype\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "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" - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 159, - "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" - } - } - }, - { - "startIndex": 45, - "endIndex": 52, - "textRun": { - "content": "Goal 2:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 52, - "endIndex": 159, - "textRun": { - "content": " Test whether the interface design communicates the workflow in our conceptual approach clearly to the use\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 15, - "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" - } - } - }, - { - "endIndex": 15, - "textRun": { - "content": "Haoqi and Gobi\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 52, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.8ww6c5a3fgfx", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "endIndex": 52, - "textRun": { - "content": "Very clear understanding of P-RC-C-S, esp with Gobi\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 52, - "endIndex": 157, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.8ww6c5a3fgfx", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 52, - "endIndex": 157, - "textRun": { - "content": "“Reflection on causes is really rich, gave me a way to elicit and model all my expert mentor knowledge.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 227, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.8ww6c5a3fgfx", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 157, - "endIndex": 227, - "textRun": { - "content": "“Really nice to be able to share this knowledge with other SIG heads”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 227, - "endIndex": 293, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.8ww6c5a3fgfx", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 227, - "endIndex": 293, - "textRun": { - "content": "“Super nice to have adata in front of me and see what’s happening\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 293, - "endIndex": 294, - "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" - } - } - }, - { - "startIndex": 293, - "endIndex": 294, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 294, - "endIndex": 419, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.x72cxwiovfm5", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 294, - "endIndex": 419, - "textRun": { - "content": "“Worried that this is hard to use potentially, but even having this there is helpful because they can see what they can try”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.8ww6c5a3fgfx": { - "listId": "kix.8ww6c5a3fgfx", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.x72cxwiovfm5": { - "listId": "kix.x72cxwiovfm5", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Usability Issues:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 63, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.u3oiz7nqzi4", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 18, - "endIndex": 63, - "textRun": { - "content": "The ones from Gobi’s study are already fixed\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 63, - "endIndex": 181, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.u3oiz7nqzi4", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 63, - "endIndex": 181, - "textRun": { - "content": "Big words, scope blocks, lack of brainstorming + scratch space, create text, next button, add button, general context\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 181, - "endIndex": 224, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.u3oiz7nqzi4", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 181, - "endIndex": 224, - "textRun": { - "content": "Context tag -> no idea what they look like\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 224, - "endIndex": 321, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.u3oiz7nqzi4", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 224, - "endIndex": 321, - "textRun": { - "content": "Strategy blockly - too empty, lack of guidance, can’t see potential causes when writing strategy\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 321, - "endIndex": 322, - "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" - } - } - }, - { - "startIndex": 321, - "endIndex": 322, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 322, - "endIndex": 341, - "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" - } - } - }, - { - "startIndex": 322, - "endIndex": 341, - "textRun": { - "content": "Things to look at:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 341, - "endIndex": 373, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 341, - "endIndex": 373, - "textRun": { - "content": "Are we oversimplifying? -> pass\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 373, - "endIndex": 542, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 373, - "endIndex": 542, - "textRun": { - "content": "Coming up with potential causes was very hard, even for Haoqi, requires a lot of recall for a lot of issues -> for scripting study, multiple mentors/iterative scripting\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 542, - "endIndex": 637, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 542, - "endIndex": 637, - "textRun": { - "content": "Should have context info that is more specific to the issue at head e.g. stuff in the detector\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 637, - "endIndex": 876, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 637, - "endIndex": 876, - "textRun": { - "content": "How can the script fit in the mentor’s workflow? Can’t automatically diagnose RC, so how should we approach this? Discuss in-person, ask over slack, how do we provide/support flexibilities like these? Interface for interacting with script\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 876, - "endIndex": 1018, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "5.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 876, - "endIndex": 1018, - "textRun": { - "content": "Strategy part -> over-scripting? Text strategies suffice? -> what are some simple affordances mentors can use with students? => user’s choice\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1018, - "endIndex": 1036, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "6.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1018, - "endIndex": 1036, - "textRun": { - "content": "Detector accuracy\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1036, - "endIndex": 1223, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "7.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1036, - "endIndex": 1223, - "textRun": { - "content": "Have students look at the root causes too? -> student reflection is another additional context indo -> help mentors understand what system can’t observe? -> good practice for student too\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.to0lkbo83bwp": { - "listId": "kix.to0lkbo83bwp", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.u3oiz7nqzi4": { - "listId": "kix.u3oiz7nqzi4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 119, - "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" - } - } - }, - { - "endIndex": 119, - "textRun": { - "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "textRun": { - "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1344975, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1858275, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 3654750, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2211d100668_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2211d100668_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2211d100668_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2211d100668_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2211d100668_0_10", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2211d100668_0_10" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22ca7b496e1_0_0", - "pageElements": [ - { - "objectId": "g22ca7b496e1_0_1", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 60, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 60, - "textRun": { - "content": "SP’23 Root Cause test Week 3\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22ca7b496e1_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22ca7b496e1_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22ca7b496e1_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22ca7b496e1_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22ca7b496e1_0_4", - "pageElements": [ - { - "objectId": "g22ca7b496e1_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 65, - "textRun": { - "content": "Who will you test your prototype with? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4211800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "Design Argument: MORE WHY?\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 29, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 29, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 269, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 31, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 269, - "textRun": { - "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 269, - "endIndex": 270, - "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" - } - } - }, - { - "startIndex": 269, - "endIndex": 270, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 270, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 270, - "endIndex": 272, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 272, - "endIndex": 460, - "textRun": { - "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 461, - "endIndex": 462, - "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" - } - } - }, - { - "startIndex": 461, - "endIndex": 462, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 462, - "endIndex": 683, - "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" - } - } - }, - { - "startIndex": 462, - "endIndex": 464, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 464, - "endIndex": 683, - "textRun": { - "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 683, - "endIndex": 966, - "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" - } - } - }, - { - "startIndex": 683, - "endIndex": 966, - "textRun": { - "content": "If the mentors had more root causes thinking/more accurate root cause. Wrote better root causes in script -> how does this help? Journey map of mentor’s mind in sig meeting-like process, recall? What is accuracy? Quantity? Most likely root causes vs less likely root causes recalled\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 966, - "endIndex": 967, - "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" - } - } - }, - { - "startIndex": 966, - "endIndex": 967, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 967, - "endIndex": 1226, - "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" - } - } - }, - { - "startIndex": 967, - "endIndex": 969, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 969, - "endIndex": 1226, - "textRun": { - "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1226, - "endIndex": 1227, - "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" - } - } - }, - { - "startIndex": 1226, - "endIndex": 1227, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1227, - "endIndex": 1436, - "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" - } - } - }, - { - "startIndex": 1227, - "endIndex": 1436, - "textRun": { - "content": "-> With a fuller understanding of why the student is struggling, mentors can help mentees achieve better long-term growth through tailored strategies. Strategy suggestions help mentors teach more effectively.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1436, - "endIndex": 1437, - "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" - } - } - }, - { - "startIndex": 1436, - "endIndex": 1437, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1437, - "endIndex": 1448, - "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" - } - } - }, - { - "startIndex": 1437, - "endIndex": 1448, - "textRun": { - "content": "Mini-test:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1448, - "endIndex": 1461, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.i8bz6yml34lx", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 1448, - "endIndex": 1461, - "textRun": { - "content": "Context test\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1461, - "endIndex": 1674, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.i8bz6yml34lx", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 1461, - "endIndex": 1674, - "textRun": { - "content": "The effectiveness of script relies on mentor’s ability to come up with root causes -> research how we can help mentors come up with root causes -> if root cause inexperienced mentors can come up with root causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1674, - "endIndex": 1693, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.i8bz6yml34lx", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 1674, - "endIndex": 1693, - "textRun": { - "content": "Test new prototype\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.i8bz6yml34lx": { - "listId": "kix.i8bz6yml34lx", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.txqi0c27zz40": { - "listId": "kix.txqi0c27zz40", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ynplpxhcweip": { - "listId": "kix.ynplpxhcweip", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 13, - "textRun": { - "content": "Participants:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 42, - "textRun": { - "content": " 4 mentors and their mentees\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 43, - "endIndex": 55, - "textRun": { - "content": "Recruitment:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 55, - "endIndex": 86, - "textRun": { - "content": " Within DTR, already recruited\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 103, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 103, - "textRun": { - "content": "Communication: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 123, - "textRun": { - "content": "Slack and in-person\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 186, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 138, - "textRun": { - "content": "Access issues:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 186, - "textRun": { - "content": " We may need temporary access to Slack channels\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 186, - "endIndex": 187, - "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" - } - } - }, - { - "startIndex": 186, - "endIndex": 187, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 187, - "endIndex": 188, - "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" - } - } - }, - { - "startIndex": 187, - "endIndex": 188, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 188, - "endIndex": 218, - "textRun": { - "content": "For Gobi and HQ: start Week 5\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 251, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 251, - "textRun": { - "content": "For Kapil and Ryan: start Week 6\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 251, - "endIndex": 273, - "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" - } - } - }, - { - "startIndex": 251, - "endIndex": 273, - "textRun": { - "content": "Run study till Week 9\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5et11dq4lm66": { - "listId": "kix.5et11dq4lm66", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.vzvz2huetn83": { - "listId": "kix.vzvz2huetn83", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Scripting Study: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 28, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 18, - "endIndex": 28, - "textRun": { - "content": "Scripting\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 262, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 262, - "textRun": { - "content": "At the beginning of each week, meet with mentors for 30 minutes to write scripts. They can choose whatever problems they want help with, we will provide some examples that have template scripts that they can adapt for their own use. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 262, - "endIndex": 396, - "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" - } - } - }, - { - "startIndex": 262, - "endIndex": 396, - "textRun": { - "content": "In the first two meeting, we will help them with scripting. Help them with script choice to make sure the script is likely to happen.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 396, - "endIndex": 397, - "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" - } - } - }, - { - "startIndex": 396, - "endIndex": 397, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 397, - "endIndex": 407, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 397, - "endIndex": 407, - "textRun": { - "content": "Interview\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 407, - "endIndex": 499, - "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" - } - } - }, - { - "startIndex": 407, - "endIndex": 499, - "textRun": { - "content": "Ask mentors how the scripting process went for them, and why they chose a specific problem.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 499, - "endIndex": 500, - "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" - } - } - }, - { - "startIndex": 499, - "endIndex": 500, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 500, - "endIndex": 501, - "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" - } - } - }, - { - "startIndex": 500, - "endIndex": 501, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 501, - "endIndex": 520, - "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" - } - } - }, - { - "startIndex": 501, - "endIndex": 520, - "textRun": { - "content": "Deployment Study: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 520, - "endIndex": 571, - "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" - } - } - }, - { - "startIndex": 520, - "endIndex": 571, - "textRun": { - "content": "If we can get good scripts + root causes thinking…\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 571, - "endIndex": 583, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 571, - "endIndex": 583, - "textRun": { - "content": "Script runs\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 583, - "endIndex": 641, - "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" - } - } - }, - { - "startIndex": 583, - "endIndex": 641, - "textRun": { - "content": "Their script will run and keep running until it triggers.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 641, - "endIndex": 853, - "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" - } - } - }, - { - "startIndex": 641, - "endIndex": 852, - "textRun": { - "content": "When script triggers, the mentor does root cause analysis and deploy strategies as they have scripted. In the process, they might choose to seek out context information or ask their mentees for more information.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 852, - "endIndex": 853, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 853, - "endIndex": 854, - "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" - } - } - }, - { - "startIndex": 853, - "endIndex": 854, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 854, - "endIndex": 855, - "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" - } - } - }, - { - "startIndex": 854, - "endIndex": 855, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 855, - "endIndex": 876, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 855, - "endIndex": 876, - "textRun": { - "content": "Post-study Interview\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 876, - "endIndex": 1030, - "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" - } - } - }, - { - "startIndex": 876, - "endIndex": 1030, - "textRun": { - "content": "After a script has been triggered and dealt with, we will interview mentors and mentees about how the script has influenced their mentoring interactions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1030, - "endIndex": 1031, - "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" - } - } - }, - { - "startIndex": 1030, - "endIndex": 1031, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1031, - "endIndex": 1124, - "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" - } - } - }, - { - "startIndex": 1031, - "endIndex": 1124, - "textRun": { - "content": "Ask mentees about their perspective on why they struggled and compare to mentor’s diagnosis.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.50iaokq8q7xd": { - "listId": "kix.50iaokq8q7xd", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.f2d3x4uv8p06": { - "listId": "kix.f2d3x4uv8p06", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ixxpl7mibqvo": { - "listId": "kix.ixxpl7mibqvo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 13, - "textRun": { - "content": "Translation:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 14, - "textRun": { - "content": "-", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 14, - "endIndex": 57, - "textRun": { - "content": "> mentor are able to create working script\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 128, - "textRun": { - "content": "-> “it was easy to write a script that reflected how I want to mentor”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 128, - "endIndex": 190, - "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" - } - } - }, - { - "startIndex": 128, - "endIndex": 190, - "textRun": { - "content": "-> “I like the structure of the script. It was really clear…”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 190, - "endIndex": 191, - "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" - } - } - }, - { - "startIndex": 190, - "endIndex": 191, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 191, - "endIndex": 204, - "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" - } - } - }, - { - "startIndex": 191, - "endIndex": 204, - "textRun": { - "content": "Root Causes:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 204, - "endIndex": 349, - "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" - } - } - }, - { - "startIndex": 204, - "endIndex": 349, - "textRun": { - "content": "-> “The structure of the script matches my way of thinking about mentoring. It provided a clear structure to approach understanding the problem“\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 349, - "endIndex": 431, - "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" - } - } - }, - { - "startIndex": 349, - "endIndex": 431, - "textRun": { - "content": "-> Mentors are able to come up with root causes quicker and more comprehensively.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 431, - "endIndex": 456, - "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" - } - } - }, - { - "startIndex": 431, - "endIndex": 456, - "textRun": { - "content": "-> Observations such as:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 456, - "endIndex": 562, - "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" - } - } - }, - { - "startIndex": 456, - "endIndex": 562, - "textRun": { - "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 562, - "endIndex": 656, - "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" - } - } - }, - { - "startIndex": 562, - "endIndex": 656, - "textRun": { - "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 656, - "endIndex": 657, - "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" - } - } - }, - { - "startIndex": 656, - "endIndex": 657, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 657, - "endIndex": 666, - "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" - } - } - }, - { - "startIndex": 657, - "endIndex": 666, - "textRun": { - "content": "Context:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 666, - "endIndex": 748, - "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" - } - } - }, - { - "startIndex": 666, - "endIndex": 748, - "textRun": { - "content": "-> Mentors are able to CORRECTLY diagnose the reason why students are struggling.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 748, - "endIndex": 749, - "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" - } - } - }, - { - "startIndex": 748, - "endIndex": 749, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 749, - "endIndex": 750, - "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" - } - } - }, - { - "startIndex": 749, - "endIndex": 750, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.y5c8yds0bxz1": { - "listId": "kix.y5c8yds0bxz1", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4211800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "textRun": { - "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "✅ Do you include who the users are, and how you will recruit them?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 148, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 148, - "textRun": { - "content": "✅ Do you include how you will communicate with your users during your study? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "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" - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 149, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 149, - "endIndex": 237, - "textRun": { - "content": "✅ Do you consider any access issues that may prevent you from running your user tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 91, - "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" - } - } - }, - { - "endIndex": 91, - "textRun": { - "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "textRun": { - "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "textRun": { - "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "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" - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "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" - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "textRun": { - "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "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" - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "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" - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "textRun": { - "content": "✅ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "textRun": { - "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "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" - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "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" - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "textRun": { - "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22ca7b496e1_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22ca7b496e1_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 15, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 14, - "textRun": { - "content": "Grace & Jordan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 14, - "endIndex": 15, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22ca7b496e1_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22ca7b496e1_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22ca7b496e1_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22ca7b496e1_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_0", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 59, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "textRun": { - "content": "Takeaways from RC User Testing(with Ryan)", - "style": {} - } - }, - { - "startIndex": 58, - "endIndex": 59, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_34", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_35", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "Goal 1:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 97, - "textRun": { - "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "textRun": { - "content": "If it helps, we can continue with this workflow.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "textRun": { - "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "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" - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "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" - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 239, - "endIndex": 305, - "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" - } - } - }, - { - "startIndex": 239, - "endIndex": 246, - "textRun": { - "content": "Goal 2:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 246, - "endIndex": 305, - "textRun": { - "content": " See what obstacles mentors face in diagnosing root causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "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" - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "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" - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "textRun": { - "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 4, - "textRun": { - "content": "Yes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "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" - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 5, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 5, - "endIndex": 96, - "textRun": { - "content": "One of the mentees couldn’t come to the SIG meeting, but we tested with two other mentees.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 182, - "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" - } - } - }, - { - "endIndex": 182, - "textRun": { - "content": "1. For under-committed, the mentor was able to diagnose the root cause very quickly with direct, in-person communication. (might be due to it’s a relatively straightforward problem)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 477, - "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" - } - } - }, - { - "startIndex": 183, - "endIndex": 477, - "textRun": { - "content": "2. The mentor enacted a very clear workflow going from the under-committed signal, to diagnosing the root cause (handwavy), and then to strategy (a mini session on the importance of sprint log as shared language that provides the mentor with a sense of their progress + how to use sprint log).\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 477, - "endIndex": 478, - "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" - } - } - }, - { - "startIndex": 477, - "endIndex": 478, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 478, - "endIndex": 746, - "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" - } - } - }, - { - "startIndex": 478, - "endIndex": 746, - "textRun": { - "content": "3. This process was peripheral but helpful. The signal we choose didn’t match his plan for the SIG meeting. It was not the most important thing he wanted to focus, but the he thought that “This talk about process was helpful to help me get a sense of their progress.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 746, - "endIndex": 747, - "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" - } - } - }, - { - "startIndex": 746, - "endIndex": 747, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 84, - "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" - } - } - }, - { - "endIndex": 84, - "textRun": { - "content": "We didn’t get to observe how root cause analysis can be useful to a mentor because:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 153, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 153, - "textRun": { - "content": "1. Under-committed: too surface-level, didn’t have a deep root cause\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 301, - "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" - } - } - }, - { - "startIndex": 153, - "endIndex": 301, - "textRun": { - "content": "2. Diagnosis mostly through direct, in-person communication, very quick for diagnosis -> didn’t get to observe obstacles (for in-person and online)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 301, - "endIndex": 434, - "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" - } - } - }, - { - "startIndex": 301, - "endIndex": 434, - "textRun": { - "content": "3. Signals had too much noise (3 signals observed-1 surface level, 1 false alarm, 1 potentially interesting but didn’t get to test):\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 434, - "endIndex": 435, - "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" - } - } - }, - { - "startIndex": 434, - "endIndex": 435, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 119, - "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" - } - } - }, - { - "endIndex": 119, - "textRun": { - "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "textRun": { - "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g219b2f18f42_1_36", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_37", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_40", - "size": { - "width": { - "magnitude": 38400, - "unit": "EMU" - }, - "height": { - "magnitude": 51200, - "unit": "EMU" - } - }, - "transform": { - "shearX": 23.9932, - "shearY": -35.9225, - "translateX": 6961200, - "translateY": 3605575.2874999996, - "unit": "EMU" - }, - "image": { - "contentUrl": "https://lh7-us.googleusercontent.com/m9qWC4WPZhzXaFtcIuYDagpvv-ZVBuxW0RCZYthGohv0LSXEBbzn5HBHFCX_DwLP-Yuvb8gyBNOiP7DBdASnj37J2Tea0z-kgQpqq9XapplkJrW5sz30PDM1nGoGJTBcqOeOI-Dy4EnmQJVzu-5GXOBBBoMTeus2bMI=s2048", - "imageProperties": { - "cropProperties": { - "leftOffset": 0.1336741, - "topOffset": 0.30438057, - "bottomOffset": 0.1169492 - }, - "outline": { - "outlineFill": { - "solidFill": { - "color": { - "themeColor": "DARK2" - }, - "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" - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_34:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_38", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_39", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_39" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_41", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_42", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 61, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 61, - "textRun": { - "content": "SP’23 Root Cause test Week 4 \n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_41:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_43", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_44", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_44" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_45", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_46", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 40, - "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" - } - } - }, - { - "endIndex": 40, - "textRun": { - "content": "High-Level Findings From Previous Study\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 191, - "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" - } - } - }, - { - "startIndex": 40, - "endIndex": 190, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 190, - "endIndex": 191, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 60, - "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" - } - } - }, - { - "endIndex": 60, - "textRun": { - "content": "How would you address these issues from the last user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4211800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "Goal 1:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 97, - "textRun": { - "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "textRun": { - "content": "If it helps, we can continue with this workflow.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "textRun": { - "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "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" - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "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" - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 239, - "endIndex": 305, - "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" - } - } - }, - { - "startIndex": 239, - "endIndex": 246, - "textRun": { - "content": "Goal 2:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 246, - "endIndex": 305, - "textRun": { - "content": " See what obstacles mentors face in diagnosing root causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "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" - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "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" - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "textRun": { - "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 471, - "endIndex": 472, - "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" - } - } - }, - { - "startIndex": 471, - "endIndex": 472, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 472, - "endIndex": 513, - "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" - } - } - }, - { - "startIndex": 472, - "endIndex": 512, - "textRun": { - "content": "User Testing Participants same as before", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 512, - "endIndex": 513, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.txqi0c27zz40": { - "listId": "kix.txqi0c27zz40", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ynplpxhcweip": { - "listId": "kix.ynplpxhcweip", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 84, - "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" - } - } - }, - { - "endIndex": 84, - "textRun": { - "content": "We didn’t get to observe how root cause analysis can be useful to a mentor because:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 153, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 153, - "textRun": { - "content": "1. Under-committed: too surface-level, didn’t have a deep root cause\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 301, - "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" - } - } - }, - { - "startIndex": 153, - "endIndex": 301, - "textRun": { - "content": "2. Diagnosis mostly through direct, in-person communication, very quick for diagnosis -> didn’t get to observe obstacles (for in-person and online)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 301, - "endIndex": 434, - "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" - } - } - }, - { - "startIndex": 301, - "endIndex": 434, - "textRun": { - "content": "3. Signals had too much noise (3 signals observed-1 surface level, 1 false alarm, 1 potentially interesting but didn’t get to test):\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 434, - "endIndex": 435, - "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" - } - } - }, - { - "startIndex": 434, - "endIndex": 435, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ], - "lists": { - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 254, - "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" - } - } - }, - { - "endIndex": 254, - "textRun": { - "content": "1. Choose problems related to conceptual understanding that mentors want to focus on during SIG, so that we can observe the influence of root cause analysis throughout the 30 min of SIG, instead of for just 5 minutes when we choose a peripheral problem\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 254, - "endIndex": 307, - "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" - } - } - }, - { - "startIndex": 254, - "endIndex": 307, - "textRun": { - "content": "E.g. misalignment in understanding of riskiest risk?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 307, - "endIndex": 412, - "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" - } - } - }, - { - "startIndex": 307, - "endIndex": 412, - "textRun": { - "content": "Are students updating the part of PRC that they said they will in the planning view of their sprint log?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 412, - "endIndex": 442, - "paragraphMarker": { - "style": { - "lineSpacing": 115, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 412, - "endIndex": 442, - "textRun": { - "content": "Student’s metacognitive goals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 442, - "endIndex": 443, - "paragraphMarker": { - "style": { - "lineSpacing": 115, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 442, - "endIndex": 443, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 443, - "endIndex": 583, - "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" - } - } - }, - { - "startIndex": 443, - "endIndex": 583, - "textRun": { - "content": "2. Maybe try some online testing as well? Especially because SIG is so short and it makes sense to try to address some issues through slack\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 583, - "endIndex": 584, - "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" - } - } - }, - { - "startIndex": 583, - "endIndex": 584, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 584, - "endIndex": 687, - "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" - } - } - }, - { - "startIndex": 584, - "endIndex": 687, - "textRun": { - "content": "3. Need to minimize noise and uncertainty in detection so we can actually get to root cause analysis. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 687, - "endIndex": 794, - "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" - } - } - }, - { - "startIndex": 687, - "endIndex": 794, - "textRun": { - "content": "a. Make sure mentees are using the tools as they’re meant to do (no separate doc, no “I just forgot” etc.)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 794, - "endIndex": 861, - "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" - } - } - }, - { - "startIndex": 794, - "endIndex": 861, - "textRun": { - "content": "b. Do some manual filtering when needed to get rid of false alarms\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 861, - "endIndex": 878, - "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" - } - } - }, - { - "startIndex": 861, - "endIndex": 878, - "textRun": { - "content": "c. SIGNAL -> RC❌\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 878, - "endIndex": 897, - "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" - } - } - }, - { - "startIndex": 878, - "endIndex": 897, - "textRun": { - "content": " RC -> SIGNAL ✅\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 897, - "endIndex": 898, - "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" - } - } - }, - { - "startIndex": 897, - "endIndex": 898, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 898, - "endIndex": 1082, - "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" - } - } - }, - { - "startIndex": 898, - "endIndex": 1081, - "textRun": { - "content": "4. Information gap between us and other SIGs: don’t know what they’re focusing on rn, what they’re expecting to talk about during SIG -> mentors can take into account when they script", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1081, - "endIndex": 1082, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.e0w7hdxmufea": { - "listId": "kix.e0w7hdxmufea", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.gi4edlhja7vs": { - "listId": "kix.gi4edlhja7vs", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.i900jzkemoqh": { - "listId": "kix.i900jzkemoqh", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 16, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "1.", - "bulletStyle": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "Preparation (?)\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 114, - "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" - } - } - }, - { - "startIndex": 16, - "endIndex": 114, - "textRun": { - "content": "Ask mentors to explain the state of the project, what they’re expecting to talk about during SIG.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 114, - "endIndex": 186, - "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" - } - } - }, - { - "startIndex": 114, - "endIndex": 186, - "textRun": { - "content": "Ask mentees for a brief explanation of their progress and deliverables.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 186, - "endIndex": 196, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "2.", - "bulletStyle": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 186, - "endIndex": 196, - "textRun": { - "content": "Setup (?)\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 196, - "endIndex": 491, - "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" - } - } - }, - { - "startIndex": 196, - "endIndex": 215, - "textRun": { - "content": "Determine a couple ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 256, - "textRun": { - "content": "RCs related to conceptual understanding. ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 256, - "endIndex": 350, - "textRun": { - "content": "Read each team’s sprint logs, canvases, and slack channels to look for signals that points to ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 350, - "endIndex": 369, - "textRun": { - "content": "these specific RCs.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 369, - "endIndex": 491, - "textRun": { - "content": ". We will take the signal to three experienced mentors, and ask them to come up with a comprehensive list of root causes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 491, - "endIndex": 504, - "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" - } - } - }, - { - "startIndex": 491, - "endIndex": 504, - "textRun": { - "content": "+ strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 504, - "endIndex": 505, - "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" - } - } - }, - { - "startIndex": 504, - "endIndex": 505, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 505, - "endIndex": 517, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 505, - "endIndex": 517, - "textRun": { - "content": "Preparation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 517, - "endIndex": 610, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 517, - "endIndex": 610, - "textRun": { - "content": "Meet with mentor before SIG meeting to show him the signals, the root causes, and strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 610, - "endIndex": 681, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 610, - "endIndex": 681, - "textRun": { - "content": "mentor will think about how he’s gonna use this information during SIG\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 681, - "endIndex": 786, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 681, - "endIndex": 786, - "textRun": { - "content": "mentor will also examine some context information before SIG to help diagnose the problem if he wants to\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 786, - "endIndex": 787, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 786, - "endIndex": 787, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 787, - "endIndex": 798, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 787, - "endIndex": 798, - "textRun": { - "content": "During SIG\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 798, - "endIndex": 811, - "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" - } - } - }, - { - "startIndex": 798, - "endIndex": 811, - "textRun": { - "content": "mentor will:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 811, - "endIndex": 872, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.ixxpl7mibqvo", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 811, - "endIndex": 872, - "textRun": { - "content": "Discuss this with his mentees to finish diagnose the problem\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 872, - "endIndex": 966, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.ixxpl7mibqvo", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 872, - "endIndex": 966, - "textRun": { - "content": "Enact strategy that they have designed for that root cause (or whatever strategy he sees fit)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 966, - "endIndex": 967, - "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" - } - } - }, - { - "startIndex": 966, - "endIndex": 967, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 967, - "endIndex": 988, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "5.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 967, - "endIndex": 988, - "textRun": { - "content": "Post-study Interview\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 988, - "endIndex": 1096, - "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" - } - } - }, - { - "startIndex": 988, - "endIndex": 1096, - "textRun": { - "content": "We will interview mentors and mentees about how this framework has influenced their mentoring interactions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.50iaokq8q7xd": { - "listId": "kix.50iaokq8q7xd", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.f2d3x4uv8p06": { - "listId": "kix.f2d3x4uv8p06", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ixxpl7mibqvo": { - "listId": "kix.ixxpl7mibqvo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "RC design argument:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 113, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 113, - "textRun": { - "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 113, - "endIndex": 269, - "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" - } - } - }, - { - "startIndex": 113, - "endIndex": 269, - "textRun": { - "content": " “I didn’t think of xxx as a potential root cause but the list of root causes helped me realize that it’s a possible reason why my mentees are struggling.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 269, - "endIndex": 294, - "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" - } - } - }, - { - "startIndex": 269, - "endIndex": 294, - "textRun": { - "content": "-> Observations such as:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 294, - "endIndex": 400, - "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" - } - } - }, - { - "startIndex": 294, - "endIndex": 400, - "textRun": { - "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 400, - "endIndex": 401, - "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" - } - } - }, - { - "startIndex": 400, - "endIndex": 401, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 401, - "endIndex": 402, - "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" - } - } - }, - { - "startIndex": 401, - "endIndex": 402, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.y5c8yds0bxz1": { - "listId": "kix.y5c8yds0bxz1", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4211800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "textRun": { - "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 91, - "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" - } - } - }, - { - "endIndex": 91, - "textRun": { - "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "textRun": { - "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "textRun": { - "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "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" - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "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" - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "textRun": { - "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "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" - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "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" - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "textRun": { - "content": "✅ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "textRun": { - "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "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" - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "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" - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "textRun": { - "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1707575, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1662900, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1489500, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2576450, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1707575, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g219b2f18f42_1_47", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_48", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 15, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 14, - "textRun": { - "content": "Grace & Jordan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 14, - "endIndex": 15, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_51", - "size": { - "width": { - "magnitude": 38400, - "unit": "EMU" - }, - "height": { - "magnitude": 51200, - "unit": "EMU" - } - }, - "transform": { - "shearX": 25.729, - "shearY": -38.5215, - "translateX": 1815650, - "translateY": 4254649.965, - "unit": "EMU" - }, - "image": { - "contentUrl": "https://lh7-us.googleusercontent.com/m9qWC4WPZhzXaFtcIuYDagpvv-ZVBuxW0RCZYthGohv0LSXEBbzn5HBHFCX_DwLP-Yuvb8gyBNOiP7DBdASnj37J2Tea0z-kgQpqq9XapplkJrW5sz30PDM1nGoGJTBcqOeOI-Dy4EnmQJVzu-5GXOBBBoMTeus2bMI=s2048", - "imageProperties": { - "cropProperties": { - "leftOffset": 0.1336741, - "topOffset": 0.30438057, - "bottomOffset": 0.1169492 - }, - "outline": { - "outlineFill": { - "solidFill": { - "color": { - "themeColor": "DARK2" - }, - "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" - } - } - } - }, - { - "objectId": "g219b2f18f42_1_52", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.6979, - "scaleY": 0.1847, - "translateX": 2756525, - "translateY": -49925, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "SIGNAL with RC related to conceptual understanding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1 - } - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 51, - "endIndex": 81, - "textRun": { - "content": "Filter out noise in detection\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1 - } - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "SHAPE_AUTOFIT", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_45:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_49", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_50", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_50" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_53", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_54", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 517800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 12, - "textRun": { - "content": "User classes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 12, - "endIndex": 13, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 71, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 70, - "textRun": { - "content": "Who are your users? At a high-level, what are they doing?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 71, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Users’ needs and goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 83, - "textRun": { - "content": "What are the high-level needs and goals for each user class?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 84, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Current solutions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 125, - "textRun": { - "content": "What existing solutions do users have to achieve their goals? (note: these need not be technical solutions)", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 83, - "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" - } - } - }, - { - "endIndex": 39, - "textRun": { - "content": "Users’ obstacles to meeting their goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 39, - "endIndex": 40, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 82, - "textRun": { - "content": "Why are users not able to meet their goal?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 83, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Problem statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 138, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 137, - "textRun": { - "content": "Briefly state the problems that your project will aim to solve (but not a solution yet!), using your previous responses", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 137, - "endIndex": 138, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 517800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2785400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 11, - "textRun": { - "content": "User class:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 11, - "endIndex": 13, - "textRun": { - "content": " \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 365, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 365, - "textRun": { - "content": "Mentors and mentees in networked work environments working to solve complex, ill-structured problems that have vaguely structured goals and constraints, and often multiple solutions. Working on these problems involves continually planning and re-planning around changing needs and constraints, often soliciting support from others in the organization.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 365, - "endIndex": 366, - "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" - } - } - }, - { - "startIndex": 365, - "endIndex": 366, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 366, - "endIndex": 389, - "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" - } - } - }, - { - "startIndex": 366, - "endIndex": 389, - "textRun": { - "content": "User Characteristics: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 389, - "endIndex": 586, - "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" - } - } - }, - { - "startIndex": 389, - "endIndex": 586, - "textRun": { - "content": "Mentors possess expertise in the organization’s area of work, various resources in the organization, effective work practices, as well as addressing problems that commonly arise in the workspace. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 44, - "textRun": { - "content": "Mentors want to utilize their expertise to:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 83, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 44, - "endIndex": 83, - "textRun": { - "content": "Know when their mentees are struggling\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 127, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 83, - "endIndex": 127, - "textRun": { - "content": "Understand why their mentees are struggling\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 213, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 127, - "endIndex": 213, - "textRun": { - "content": "Provide tailored strategy to help their mentees overcome what they’re struggling with\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 213, - "endIndex": 296, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 213, - "endIndex": 296, - "textRun": { - "content": "Help them become better learners without spending an overwhelming amount of time. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "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" - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 297, - "endIndex": 512, - "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" - } - } - }, - { - "startIndex": 297, - "endIndex": 512, - "textRun": { - "content": "When tackling complex tasks, mentees often encounter problems that require support from others because they do not have the resources or skills to address the work needs themselves. When this happens, they want to:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 512, - "endIndex": 621, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 512, - "endIndex": 621, - "textRun": { - "content": "Utilize the resources in their work network such as venues, people, and tools to solve their problem at hand\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 621, - "endIndex": 777, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 621, - "endIndex": 777, - "textRun": { - "content": "Learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 777, - "endIndex": 833, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 777, - "endIndex": 833, - "textRun": { - "content": "Do so in a way which is more sustainable and enjoyable.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "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" - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "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" - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.pybpe9m23two": { - "listId": "kix.pybpe9m23two", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.z71lbhkwuvo3": { - "listId": "kix.z71lbhkwuvo3", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 264, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "1.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 31, - "textRun": { - "content": "Online/offline communication", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 264, - "textRun": { - "content": ": mentor contacts mentees through professional messaging platforms such as Slack, email, or meet with mentees in person to discuss their struggles. Mentees can also contact mentors to ask questions and get help when they are stuck. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 264, - "endIndex": 265, - "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" - } - } - }, - { - "startIndex": 264, - "endIndex": 265, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 265, - "endIndex": 293, - "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" - } - } - }, - { - "startIndex": 265, - "endIndex": 267, - "textRun": { - "content": "2.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 267, - "endIndex": 268, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 268, - "endIndex": 274, - "textRun": { - "content": "Mentor", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 274, - "endIndex": 275, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 275, - "endIndex": 291, - "textRun": { - "content": "Manually Monitor", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 291, - "endIndex": 293, - "textRun": { - "content": ":\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 293, - "endIndex": 435, - "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" - } - } - }, - { - "startIndex": 293, - "endIndex": 435, - "textRun": { - "content": "With workspaces becoming increasingly digitized, mentor can manually check resources and notify students when they see ineffective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 435, - "endIndex": 436, - "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" - } - } - }, - { - "startIndex": 435, - "endIndex": 436, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 436, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 436, - "endIndex": 438, - "textRun": { - "content": "3.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 438, - "endIndex": 439, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 439, - "endIndex": 465, - "textRun": { - "content": "Workspace automation tools", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 465, - "endIndex": 467, - "textRun": { - "content": ":\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 586, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 586, - "textRun": { - "content": "Mentor can use workspace automation tools such as Slack and Zapier to detect work needs and facilitate work processes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 586, - "endIndex": 587, - "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" - } - } - }, - { - "startIndex": 586, - "endIndex": 587, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 587, - "endIndex": 613, - "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" - } - } - }, - { - "startIndex": 587, - "endIndex": 589, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 0.6 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 589, - "endIndex": 590, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 590, - "endIndex": 613, - "textRun": { - "content": "Orchestration Scripts:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 613, - "endIndex": 728, - "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" - } - } - }, - { - "startIndex": 613, - "endIndex": 728, - "textRun": { - "content": "Mentors can use the OS language to write scripts that surface support strategies at appropriate times and settings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 728, - "endIndex": 729, - "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" - } - } - }, - { - "startIndex": 728, - "endIndex": 729, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 729, - "endIndex": 730, - "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" - } - } - }, - { - "startIndex": 729, - "endIndex": 730, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.j2f6lbesv3dp": { - "listId": "kix.j2f6lbesv3dp", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.lrf6l3cv5yu7": { - "listId": "kix.lrf6l3cv5yu7", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "1.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 27, - "textRun": { - "content": " Mentor Contact Mentee: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 157, - "textRun": { - "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 180, - "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" - } - } - }, - { - "startIndex": 157, - "endIndex": 180, - "textRun": { - "content": "Mentee contact Mentor:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 440, - "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" - } - } - }, - { - "startIndex": 180, - "endIndex": 440, - "textRun": { - "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 440, - "endIndex": 441, - "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" - } - } - }, - { - "startIndex": 440, - "endIndex": 441, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 441, - "endIndex": 506, - "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" - } - } - }, - { - "startIndex": 441, - "endIndex": 443, - "textRun": { - "content": "2.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 443, - "endIndex": 506, - "textRun": { - "content": " Time-consuming and not scalable as organization grows in size\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 506, - "endIndex": 507, - "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" - } - } - }, - { - "startIndex": 506, - "endIndex": 507, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 507, - "endIndex": 702, - "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" - } - } - }, - { - "startIndex": 507, - "endIndex": 509, - "textRun": { - "content": "3.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 702, - "textRun": { - "content": " Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 702, - "endIndex": 1380, - "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" - } - } - }, - { - "startIndex": 702, - "endIndex": 874, - "textRun": { - "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 874, - "endIndex": 936, - "textRun": { - "content": "mentors tend to provide specific problem-solving strategies (c", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 936, - "endIndex": 955, - "textRun": { - "content": "ognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 955, - "endIndex": 968, - "textRun": { - "content": ") instead of ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 968, - "endIndex": 992, - "textRun": { - "content": "metacognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 992, - "endIndex": 1072, - "textRun": { - "content": " that ensure the problem is solved in ways that promote mentee’s personal growth", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1072, - "endIndex": 1380, - "textRun": { - "content": ". This is problematic because while the short-term goal of completing a specific task has been met, the underlying reason of why mentees were struggling with the task has been overlooked. In the long term, this underlying cause of struggling will likely cause many other problems for the mentor and mentees.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1380, - "endIndex": 1381, - "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" - } - } - }, - { - "startIndex": 1380, - "endIndex": 1381, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1381, - "endIndex": 1954, - "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" - } - } - }, - { - "startIndex": 1381, - "endIndex": 1383, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 0.6 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1383, - "endIndex": 1384, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1384, - "endIndex": 1405, - "textRun": { - "content": "Expression Challenge:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1405, - "endIndex": 1770, - "textRun": { - "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1770, - "endIndex": 1897, - "textRun": { - "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1897, - "endIndex": 1954, - "textRun": { - "content": " available through mentees' interaction with resources. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1954, - "endIndex": 1955, - "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" - } - } - }, - { - "startIndex": 1954, - "endIndex": 1955, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1955, - "endIndex": 2251, - "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" - } - } - }, - { - "startIndex": 1955, - "endIndex": 1961, - "textRun": { - "content": "Also, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1961, - "endIndex": 2028, - "textRun": { - "content": "Mentors often find it difficult to put themselves in mentee’s shoes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 2028, - "endIndex": 2251, - "textRun": { - "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.7w4lrivrcuw2": { - "listId": "kix.7w4lrivrcuw2", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 877, - "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" - } - } - }, - { - "endIndex": 877, - "textRun": { - "content": "Mentors want to utilize their expertise to help mentees achieve personal growth while tackling complex tasks in a networked workspace by understanding when and why mentees are struggling and providing tailored strategies. Mentors currently use tools like online/in person communication, and workspace automation tools to support their mentoring practice. However, these tools are either time-consuming, not scalable, or promotes task-specific cognitive strategies that have limited long-term benefits for the mentees. While the OS language allows mentors to surface support strategies at appropriate times and settings, 1) it’s still hard for them to know why mentees are struggling because mentors often find it difficult to put themselves in mentee’s shoe, and 2) they lack the tools to translate their high level understanding of work strategies to machine representations.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.7w4lrivrcuw2": { - "listId": "kix.7w4lrivrcuw2", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2785400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1481050, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 53, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "✅/❌ Have you clearly distinguished the user classes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "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" - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 54, - "endIndex": 118, - "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" - } - } - }, - { - "startIndex": 54, - "endIndex": 118, - "textRun": { - "content": "✅/❌ Do you state what your users are doing for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 183, - "textRun": { - "content": "✅/❌ Do you state the major characteristics for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 184, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 184, - "endIndex": 237, - "textRun": { - "content": "✅/❌ Have you generated personas for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 125, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 125, - "textRun": { - "content": "✅/❌ Are these goals things that your actual users want to do (and not things you think they should do)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 126, - "endIndex": 188, - "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" - } - } - }, - { - "startIndex": 126, - "endIndex": 188, - "textRun": { - "content": "✅/❌ Do you state why these goals are important to your users?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 189, - "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" - } - } - }, - { - "startIndex": 188, - "endIndex": 189, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 189, - "endIndex": 275, - "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" - } - } - }, - { - "startIndex": 189, - "endIndex": 275, - "textRun": { - "content": "✅/❌ Do you have evidence from your interviews or observations to support these goals?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "For each existing solution:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 122, - "textRun": { - "content": "✅/❌ Do you state how the current solution works, and how it is used to meet the users’ needs?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 217, - "textRun": { - "content": "✅/❌ Do you state what users think works well about the solution? What doesn’t work well? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 391, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 313, - "textRun": { - "content": "✅/❌ Do you state why is it bad that current solution doesn’t work at all or isn’t good enough? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 313, - "endIndex": 391, - "textRun": { - "content": "(hint: really try to empathize with your users to understand their struggles)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 98, - "textRun": { - "content": "✅/❌ Have you mapped out your user’s journey to understand their pain points?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 99, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 99, - "endIndex": 158, - "textRun": { - "content": "✅/❌ Do you understand why they are having these struggles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 158, - "endIndex": 159, - "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" - } - } - }, - { - "startIndex": 158, - "endIndex": 159, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 242, - "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" - } - } - }, - { - "startIndex": 159, - "endIndex": 242, - "textRun": { - "content": "✅/❌ Do you understand why these obstacles are problematic or painful for the user?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "For each problem statement:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 98, - "textRun": { - "content": "✅/❌ Does your problem statement address who the users/characters are?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 99, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 99, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Does your problem statement truly capture the core tension between the users’ needs and obstacles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 203, - "endIndex": 313, - "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" - } - } - }, - { - "startIndex": 203, - "endIndex": 313, - "textRun": { - "content": "✅/❌ Is your problem statement in the form, “User wants to do X, but can’t because Y, which is bad because Z”?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1481050, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g219b2f18f42_1_55", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 38, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "Mysore Template: Problem Statement {}", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_56", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "[Grace & Jordan]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 17, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_53:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_57", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_58", - "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": 29, - "paragraphMarker": { - "style": { - "indentStart": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "A is an obstacle (good job!)\n", - "style": {} - } - }, - { - "startIndex": 29, - "endIndex": 164, - "paragraphMarker": { - "style": { - "indentStart": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 29, - "endIndex": 82, - "textRun": { - "content": "I would rephrase b-3 to emphasize on the complexity, ", - "style": {} - } - }, - { - "startIndex": 82, - "endIndex": 103, - "textRun": { - "content": "which mentors/mentees", - "style": { - "underline": true - } - } - }, - { - "startIndex": 103, - "endIndex": 164, - "textRun": { - "content": " (especially mentees) do know have the bandwidth to process.\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_58" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_0", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.1776, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 46, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 46, - "textRun": { - "content": "Takeaways from User Testing \n", - "style": {} - } - }, - { - "startIndex": 46, - "endIndex": 76, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 46, - "endIndex": 75, - "textRun": { - "content": "SP’23 Root Cause test Week 4 ", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - }, - { - "startIndex": 75, - "endIndex": 76, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 76, - "endIndex": 93, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 76, - "endIndex": 93, - "textRun": { - "content": "Do all 6 slides!\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_4", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Mind Dump / “Off the top”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 127, - "textRun": { - "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 128, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 49, - "textRun": { - "content": "Restate your Problem Statement + Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 136, - "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" - } - } - }, - { - "startIndex": 49, - "endIndex": 135, - "textRun": { - "content": "What was your problem statement and design argument that you tested in this user test?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 135, - "endIndex": 136, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Testing Scenario + Measures", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 120, - "textRun": { - "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Individual Key Insights", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 93, - "textRun": { - "content": "As individuals, where were some insights you had from the user test? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Synthesize Key Insights as a Group\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "textRun": { - "content": "As a group, what were your key insights?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4266450, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 183, - "textRun": { - "content": "1. For under-committed, the mentor was able to diagnose the root cause very quickly with direct, in-person communication. (might be due to it’s a relatively straightforward problem)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 184, - "endIndex": 478, - "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" - } - } - }, - { - "startIndex": 184, - "endIndex": 478, - "textRun": { - "content": "2. The mentor enacted a very clear workflow going from the under-committed signal, to diagnosing the root cause (handwavy), and then to strategy (a mini session on the importance of sprint log as shared language that provides the mentor with a sense of their progress + how to use sprint log).\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 478, - "endIndex": 479, - "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" - } - } - }, - { - "startIndex": 478, - "endIndex": 479, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 479, - "endIndex": 747, - "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" - } - } - }, - { - "startIndex": 479, - "endIndex": 747, - "textRun": { - "content": "3. This process was peripheral but helpful. The signal we choose didn’t match his plan for the SIG meeting. It was not the most important thing he wanted to focus, but the he thought that “This talk about process was helpful to help me get a sense of their progress.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 747, - "endIndex": 748, - "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" - } - } - }, - { - "startIndex": 747, - "endIndex": 748, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 748, - "endIndex": 946, - "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" - } - } - }, - { - "startIndex": 748, - "endIndex": 945, - "textRun": { - "content": "The effectiveness of script relies on mentor’s ability to come up with root causes -> research how we can help mentors come up with root causes -> if inexperienced mentors come up with root causes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 945, - "endIndex": 946, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5ri3mahafe48": { - "listId": "kix.5ri3mahafe48", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.i113f9cri0bo": { - "listId": "kix.i113f9cri0bo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.s9sznpijevks": { - "listId": "kix.s9sznpijevks", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "Restate the problem and design you set out to test with the design sprint you just completed.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 123, - "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" - } - } - }, - { - "endIndex": 123, - "textRun": { - "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 210, - "textRun": { - "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 210, - "endIndex": 216, - "textRun": { - "content": " Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 214, - "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" - } - } - }, - { - "endIndex": 214, - "textRun": { - "content": "This test leads us to think that the current model of scaffolding leads the mentors to arrive to root causes and strategies that are on point and perceived as helpful to the mentee (at least for simpler scenarios)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 375, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 375, - "textRun": { - "content": "Since this part of the process seems successful, we should consider shifting gears to focus on how the mentor can realize this script after scaffolding for it \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 375, - "endIndex": 376, - "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" - } - } - }, - { - "startIndex": 375, - "endIndex": 376, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 376, - "endIndex": 509, - "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" - } - } - }, - { - "startIndex": 376, - "endIndex": 509, - "textRun": { - "content": "Tools should be presented clearly to the user so that they understand what the scripting environment affords/can’t afford to measure\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "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" - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 510, - "endIndex": 511, - "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" - } - } - }, - { - "startIndex": 510, - "endIndex": 511, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Noise + false alarms\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 95, - "textRun": { - "content": "Numerical + field empty to detect problems with conceptual understanding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4266450, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Quick Takeaways from User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_9", - "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": 148, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "Look at some of the prompts in ", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 146, - "textRun": { - "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61", - "style": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "HYPERLINK" - } - }, - "link": { - "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61" - }, - "underline": true - } - } - }, - { - "startIndex": 146, - "endIndex": 148, - "textRun": { - "content": " \n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_10", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_11", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 6, - "tableRows": [ - { - "rowHeight": { - "magnitude": 784000, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 31, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "Restate your Problem Statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 31, - "endIndex": 97, - "textRun": { - "content": "What was your problem statement before going into your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 12, - "textRun": { - "content": "User classes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 12, - "endIndex": 13, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 69, - "textRun": { - "content": "How has your understanding of your user classes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Users’ needs and goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 95, - "textRun": { - "content": "How has your understanding of users’ high-level needs and goals changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Current solutions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 97, - "textRun": { - "content": "Did you learn more about existing solutions that users have, and how they work?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 139, - "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" - } - } - }, - { - "endIndex": 39, - "textRun": { - "content": "Users’ obstacles to meeting their goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 39, - "endIndex": 40, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 138, - "textRun": { - "content": "Did you learn more about why users are not able to meet their goal, with or without your solution?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Problem statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 142, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 141, - "textRun": { - "content": "How has your problem statement changed? What assumptions were correct/incorrect? What parts of the problem were reinforced?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 141, - "endIndex": 142, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 784000, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2544750, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2544750, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1483250, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 24, - "textRun": { - "content": "No checklist questions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 80, - "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" - } - } - }, - { - "endIndex": 80, - "textRun": { - "content": "✅/❌ Did you include any new user classes you have identified through your test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 146, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 146, - "textRun": { - "content": "✅/❌Did you include any new characteristics of your user classes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 232, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 232, - "textRun": { - "content": "✅/❌Did your findings reinforce any previously user classes or their characteristics?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 111, - "textRun": { - "content": "✅/❌ Did you include any new needs/goals (or update existing ones) based on your findings?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "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" - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 112, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 112, - "endIndex": 184, - "textRun": { - "content": "✅/❌ Did your findings reinforce any previously identified needs/goals? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "For each existing solution:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Have you discovered new solutions that users have attempted to meet their needs? If so, do you explain how these work?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 175, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 175, - "textRun": { - "content": "✅/❌ Have you discovered new obstacles to existing solutions, or your solution? If so, do you explain why users are having struggles with those solutions?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 175, - "endIndex": 176, - "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" - } - } - }, - { - "startIndex": 175, - "endIndex": 176, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 176, - "endIndex": 315, - "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" - } - } - }, - { - "startIndex": 176, - "endIndex": 315, - "textRun": { - "content": "✅/❌ Did your design uncover new obstacles that prevented users from reaching their goal? If so, did you explain why those obstacles exist?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "For each problem statement:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 104, - "textRun": { - "content": "✅/❌ Does your updated problem statement capture any new needs or obstacles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 105, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 105, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 185, - "textRun": { - "content": "✅/❌ Do you include a problem statement for any new user classes you discovered?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1483250, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 54, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "Mysore Template: Understanding Your Problem Statement", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_10:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_14", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_15", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_15" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_16", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_17", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 671900, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Restate your Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 97, - "textRun": { - "content": "What was your design argument that you were testing this user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Desired User Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 85, - "textRun": { - "content": "How has your understanding of the desired user outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Obstacles to user outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 80, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 80, - "textRun": { - "content": "How has your understanding of the obstacles changed? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 278, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 278, - "textRun": { - "content": "Was the main practical obstacle the same as the conceptual obstacle? In other words, is it some usability problem that is blocking progress, or is it the actual obstacle from your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Design Characteristic\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 92, - "textRun": { - "content": "In what ways were your design characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Argument for your design\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "textRun": { - "content": "What did you learn about the argument for how your characteristics can overcome the obstacles to reach user outcomes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 671900, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2850650, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 240, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 240, - "textRun": { - "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 240, - "endIndex": 241, - "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" - } - } - }, - { - "startIndex": 240, - "endIndex": 241, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 241, - "endIndex": 431, - "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" - } - } - }, - { - "startIndex": 241, - "endIndex": 243, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 243, - "endIndex": 431, - "textRun": { - "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 431, - "endIndex": 432, - "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" - } - } - }, - { - "startIndex": 431, - "endIndex": 432, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 432, - "endIndex": 742, - "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" - } - } - }, - { - "startIndex": 432, - "endIndex": 434, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 434, - "endIndex": 742, - "textRun": { - "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing so that they can help mentees achieve better long-term growth through tailored strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 742, - "endIndex": 743, - "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" - } - } - }, - { - "startIndex": 742, - "endIndex": 743, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 743, - "endIndex": 1002, - "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" - } - } - }, - { - "startIndex": 743, - "endIndex": 745, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 745, - "endIndex": 1001, - "textRun": { - "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1001, - "endIndex": 1002, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2850650, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1289475, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Based on your user testing, did you have an updated description of what users want to be able to do?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 328, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 142, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 328, - "textRun": { - "content": " want users to do? In other words, did your users use your previous design in an unanticipated way that was not desirable, or helped you understand what outcomes users don’t care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 72, - "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" - } - } - }, - { - "endIndex": 72, - "textRun": { - "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 73, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 73, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Did you include any new understanding about why designs fail?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "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" - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 140, - "endIndex": 326, - "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" - } - } - }, - { - "startIndex": 140, - "endIndex": 311, - "textRun": { - "content": "✅/❌ Does your understanding of obstacles point to what kinds of designs may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 311, - "endIndex": 314, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 314, - "endIndex": 326, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 97, - "textRun": { - "content": "✅/❌ Did your characteristics support users in achieving the high-level outcomes they care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 74, - "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" - } - } - }, - { - "endIndex": 74, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 74, - "endIndex": 75, - "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" - } - } - }, - { - "startIndex": 74, - "endIndex": 75, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 75, - "endIndex": 148, - "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" - } - } - }, - { - "startIndex": 75, - "endIndex": 148, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "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" - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1289475, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_18", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 52, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Mysore Template: Understanding Your Design Argument", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 52, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_19", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_16:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_20", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_21", - "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": 143, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Check the updated prompts ", - "style": {} - } - }, - { - "startIndex": 26, - "endIndex": 141, - "textRun": { - "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73", - "style": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "HYPERLINK" - } - }, - "link": { - "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73" - }, - "underline": true - } - } - }, - { - "startIndex": 141, - "endIndex": 143, - "textRun": { - "content": " \n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_21" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_22", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_23", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 570175, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Restate your Interface Model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 139, - "textRun": { - "content": "What was the interface model you used to implement your design argument that you were testing this user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Desired Interface Outcomes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 96, - "textRun": { - "content": "How has your understanding of the desired interface outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 96, - "endIndex": 97, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Obstacle to Interface Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 30, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 30, - "endIndex": 83, - "textRun": { - "content": "How has your understanding of the obstacles changed? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 84, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Interface Feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 91, - "textRun": { - "content": "In what ways were your interface characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Argument for your interface feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 164, - "textRun": { - "content": "What did you learn about the argument for how your interface feature can overcome the obstacles to reach the interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 570175, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2938725, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2938725, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1303100, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 146, - "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" - } - } - }, - { - "endIndex": 146, - "textRun": { - "content": "✅/❌ Based on your user testing, do you have an updated description of what your interface needs to do in order to implement your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 359, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 180, - "textRun": { - "content": "✅/❌ Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 183, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 359, - "textRun": { - "content": " want your interface to allow? In other words, did your users use your previous interface in an unanticipated way that was not desirable to instantiating your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 72, - "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" - } - } - }, - { - "endIndex": 72, - "textRun": { - "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 73, - "endIndex": 150, - "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" - } - } - }, - { - "startIndex": 73, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Did you include any new understanding about why interface features fail?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 348, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 333, - "textRun": { - "content": "✅/❌ Does your understanding of obstacles point to what kinds of interface features may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 333, - "endIndex": 336, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 336, - "endIndex": 348, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 74, - "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" - } - } - }, - { - "endIndex": 74, - "textRun": { - "content": "✅/❌ Did your interface feature realize your design argument as intended? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 84, - "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" - } - } - }, - { - "endIndex": 84, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the interface argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 168, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the interface argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 169, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 169, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1303100, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_24", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 52, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Mysore Template: Understanding Your Interface Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 52, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_25", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_22:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_26", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_27", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_27" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_28", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_29", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 514350, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Restate your System Model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 96, - "textRun": { - "content": "What was the system model you used to implement your interface model?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Desired System Outcomes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 90, - "textRun": { - "content": "How has your understanding of the desired system outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Obstacle to System Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 80, - "textRun": { - "content": "How has your understanding of the obstacles changed? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "System Methods or Techniques\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 99, - "textRun": { - "content": "In what ways were your system characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Argument for your system method/technique\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 158, - "textRun": { - "content": "What did you learn about the argument for how your approach can overcome the obstacles to reach the system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 514350, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2967625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2967625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1298850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 142, - "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" - } - } - }, - { - "endIndex": 142, - "textRun": { - "content": "✅/❌Based on your user testing, do you have an updated description of what your system needs to do in order to implement your interface model?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 143, - "endIndex": 290, - "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" - } - } - }, - { - "startIndex": 143, - "endIndex": 175, - "textRun": { - "content": "✅/❌Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 175, - "endIndex": 178, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 178, - "endIndex": 290, - "textRun": { - "content": " want your system model to allow? In other words, did your users attempt to use your system in unintended ways?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 71, - "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" - } - } - }, - { - "endIndex": 71, - "textRun": { - "content": "✅/❌Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 71, - "endIndex": 72, - "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" - } - } - }, - { - "startIndex": 71, - "endIndex": 72, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 157, - "textRun": { - "content": "✅/❌Did you include any new understanding about why your system implementation fails?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 157, - "endIndex": 158, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 158, - "endIndex": 358, - "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" - } - } - }, - { - "startIndex": 158, - "endIndex": 343, - "textRun": { - "content": "✅/❌Does your understanding of obstacles point to what kinds of system implementations may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 343, - "endIndex": 346, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 346, - "endIndex": 358, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 118, - "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" - } - } - }, - { - "endIndex": 118, - "textRun": { - "content": "✅/❌Did your system model (and associated implementation methods/techniques) realize your interface model as intended?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 81, - "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" - } - } - }, - { - "endIndex": 81, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the system argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 162, - "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" - } - } - }, - { - "startIndex": 82, - "endIndex": 162, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the system argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 162, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 162, - "endIndex": 163, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1298850, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_30", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Understanding Your System Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_31", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_28:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_32", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_33", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_33" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_34", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_35", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 121, - "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" - } - } - }, - { - "endIndex": 121, - "textRun": { - "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "textRun": { - "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "textRun": { - "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "textRun": { - "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "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" - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_36", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_37", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_34:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_38", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_39", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_39" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_67", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_68", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 43, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 43, - "textRun": { - "content": "Test #1 & 2\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_67:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_69", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_70", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_70" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_71", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_72", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 65, - "textRun": { - "content": "Who will you test your prototype with? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2554400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 255, - "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" - } - } - }, - { - "endIndex": 255, - "textRun": { - "content": "We are trying to test if the blocks we have will actually enable the user to script for the scenario we have in mind. Are the blocks understandable? Will the user be able to construct both a detector and a strategy block to act on the situation detected?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 255, - "endIndex": 256, - "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" - } - } - }, - { - "startIndex": 255, - "endIndex": 256, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 256, - "endIndex": 266, - "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" - } - } - }, - { - "startIndex": 256, - "endIndex": 266, - "textRun": { - "content": "Scenario:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 266, - "endIndex": 310, - "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" - } - } - }, - { - "startIndex": 266, - "endIndex": 310, - "textRun": { - "content": "Detecting when a student is overcommitting \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "Mentors in DTR. Specifically, we will pair with a mentor during PR and test the current interface with them\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 40, - "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" - } - } - }, - { - "endIndex": 40, - "textRun": { - "content": "1- We will give the mentor this prompt:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 40, - "endIndex": 172, - "textRun": { - "content": "“Write a script that will enable you to detect when a student is overcommitting in a sprint and provides useful strategy (or more)”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 172, - "endIndex": 173, - "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" - } - } - }, - { - "startIndex": 172, - "endIndex": 173, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 173, - "endIndex": 174, - "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" - } - } - }, - { - "startIndex": 173, - "endIndex": 174, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 174, - "endIndex": 316, - "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" - } - } - }, - { - "startIndex": 174, - "endIndex": 316, - "textRun": { - "content": "2- We will observe as the user navigates the tool, paying extra attention to how they find the blocks and what meaning they make out of them \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 316, - "endIndex": 317, - "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" - } - } - }, - { - "startIndex": 316, - "endIndex": 317, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 317, - "endIndex": 444, - "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" - } - } - }, - { - "startIndex": 317, - "endIndex": 444, - "textRun": { - "content": "3- For this test, we have specific blocks designed that we think they user should use to script for this scenario (happy path)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 444, - "endIndex": 445, - "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" - } - } - }, - { - "startIndex": 444, - "endIndex": 445, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 445, - "endIndex": 466, - "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" - } - } - }, - { - "startIndex": 445, - "endIndex": 466, - "textRun": { - "content": "Post-test questions:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 466, - "endIndex": 551, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "1)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 466, - "endIndex": 551, - "textRun": { - "content": "Can you walk me through the logic you have? How do you think this is going to work? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 551, - "endIndex": 612, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "2)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 551, - "endIndex": 612, - "textRun": { - "content": "Were you able to find the blocks you needed? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 612, - "endIndex": 678, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "3)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 612, - "endIndex": 678, - "textRun": { - "content": "Were you able to understand what each block does? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 678, - "endIndex": 833, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "4)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 678, - "endIndex": 833, - "textRun": { - "content": "Why did you choose those specific blocks in the “if statement block”? Do you think this would succeed to capture the situation every time? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "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" - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "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" - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.qle4dnaitz2w": { - "listId": "kix.qle4dnaitz2w", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "We expect to learn: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 112, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 112, - "textRun": { - "content": "- How does the user get to deciding on what blocks they need to bring this script to life?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 112, - "endIndex": 113, - "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" - } - } - }, - { - "startIndex": 112, - "endIndex": 113, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 113, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 113, - "endIndex": 151, - "textRun": { - "content": "- Can they find the blocks they need?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 152, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 152, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 152, - "endIndex": 196, - "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" - } - } - }, - { - "startIndex": 152, - "endIndex": 196, - "textRun": { - "content": "- Do they understand what each block does? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 196, - "endIndex": 197, - "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" - } - } - }, - { - "startIndex": 196, - "endIndex": 197, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 197, - "endIndex": 273, - "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" - } - } - }, - { - "startIndex": 197, - "endIndex": 273, - "textRun": { - "content": "- Do they use each block as intended? If not, why? How else do they use it?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2554400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 186, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 186, - "textRun": { - "content": "✅/❌ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 69, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "✅/❌ Do you include who the users are, and how you will recruit them?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 150, - "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" - } - } - }, - { - "startIndex": 70, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Do you include how you will communicate with your users during your study? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 240, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 240, - "textRun": { - "content": "✅/❌ Do you consider any access issues that may prevent you from running your user tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 93, - "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" - } - } - }, - { - "endIndex": 93, - "textRun": { - "content": "✅/❌ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 218, - "textRun": { - "content": "✅/❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 219, - "endIndex": 328, - "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" - } - } - }, - { - "startIndex": 219, - "endIndex": 328, - "textRun": { - "content": "✅/❌ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 328, - "endIndex": 329, - "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" - } - } - }, - { - "startIndex": 328, - "endIndex": 329, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 329, - "endIndex": 481, - "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" - } - } - }, - { - "startIndex": 329, - "endIndex": 481, - "textRun": { - "content": "✅/❌ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 481, - "endIndex": 482, - "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" - } - } - }, - { - "startIndex": 481, - "endIndex": 482, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 482, - "endIndex": 554, - "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" - } - } - }, - { - "startIndex": 482, - "endIndex": 554, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅/❌ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 207, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 207, - "textRun": { - "content": "✅/❌ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "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" - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 208, - "endIndex": 307, - "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" - } - } - }, - { - "startIndex": 208, - "endIndex": 307, - "textRun": { - "content": "✅/❌ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_73", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_74", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_71:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_75", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_76", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_76" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g215e1dfdce3_0_0", - "pageElements": [ - { - "objectId": "g215e1dfdce3_0_1", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 66, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 66, - "textRun": { - "content": "Final W’23 test (complex scenario)\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g215e1dfdce3_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g215e1dfdce3_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g215e1dfdce3_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g215e1dfdce3_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g215e1dfdce3_0_4", - "pageElements": [ - { - "objectId": "g215e1dfdce3_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 65, - "textRun": { - "content": "Who will you test your prototype with? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2554400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 115, - "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" - } - } - }, - { - "endIndex": 115, - "textRun": { - "content": "We have modified the scaffolding prompts and scripting workspace to address the following abstraction challenges: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 115, - "endIndex": 159, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.39ir17xo6jt1", - "glyph": "●", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 115, - "endIndex": 159, - "textRun": { - "content": "Under-scoped on root cause (Mix-initiative)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 193, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.39ir17xo6jt1", - "glyph": "●", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 159, - "endIndex": 193, - "textRun": { - "content": "Inaccuracy in encoding detection \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 193, - "endIndex": 258, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.39ir17xo6jt1", - "glyph": "●", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 193, - "endIndex": 258, - "textRun": { - "content": "Under-scoped on strategies (lack of personalization, onboarding)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 498, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 498, - "textRun": { - "content": "We are trying to test if the modified interface will help the user brainstorm root causes of a “complex” scenario, come up with a way to detect the situation using the blocks, and identify strategies that map to the root causes identified\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 498, - "endIndex": 499, - "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" - } - } - }, - { - "startIndex": 498, - "endIndex": 499, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 499, - "endIndex": 564, - "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" - } - } - }, - { - "startIndex": 499, - "endIndex": 564, - "textRun": { - "content": "This will help us verify our design argument and interface model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 564, - "endIndex": 565, - "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" - } - } - }, - { - "startIndex": 564, - "endIndex": 565, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 565, - "endIndex": 808, - "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" - } - } - }, - { - "startIndex": 565, - "endIndex": 808, - "textRun": { - "content": "A Complex scenario: has more than 1 reason why it could be happening, therefore the detector should have multiple conditions and there should be at least 2 strategies to address it. Also resource suggested should differ for different students\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 808, - "endIndex": 809, - "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" - } - } - }, - { - "startIndex": 808, - "endIndex": 809, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.39ir17xo6jt1": { - "listId": "kix.39ir17xo6jt1", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 81, - "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" - } - } - }, - { - "endIndex": 81, - "textRun": { - "content": "One of the mentors in DTR (ideally a mentor with less exposure to the interface)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 232, - "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" - } - } - }, - { - "startIndex": 82, - "endIndex": 232, - "textRun": { - "content": "We will start contacting the mentor early on in the week (by Monday max) with the hope to schedule a test later in the week (before studio on Friday)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 232, - "endIndex": 233, - "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" - } - } - }, - { - "startIndex": 232, - "endIndex": 233, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 233, - "endIndex": 326, - "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" - } - } - }, - { - "startIndex": 233, - "endIndex": 326, - "textRun": { - "content": "Contingency plan (depending on how fast the building is going): we test early on finals week\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "We will give the mentor this prompt:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 295, - "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" - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "“", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 38, - "endIndex": 159, - "textRun": { - "content": "For projects with multiple team members, you want your students to develop skills across Design, Technology, and Research", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "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": 159, - "endIndex": 293, - "textRun": { - "content": ". Write a script to identify and address the situation when there is an imbalance in the distribution of D-T-R work among the students", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "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": 293, - "endIndex": 295, - "textRun": { - "content": "”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 295, - "endIndex": 296, - "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" - } - } - }, - { - "startIndex": 295, - "endIndex": 296, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "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" - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 297, - "endIndex": 492, - "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" - } - } - }, - { - "startIndex": 297, - "endIndex": 492, - "textRun": { - "content": "2- We will observe as the user navigates the tool, paying to what worked well and what didn’t work well as they go through the scaffolding (identifying root causes and strategies) and scripting \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 492, - "endIndex": 493, - "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" - } - } - }, - { - "startIndex": 492, - "endIndex": 493, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 493, - "endIndex": 620, - "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" - } - } - }, - { - "startIndex": 493, - "endIndex": 620, - "textRun": { - "content": "3- For this test, we have specific blocks designed that we think they user should use to script for this scenario (happy path)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 620, - "endIndex": 621, - "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" - } - } - }, - { - "startIndex": 620, - "endIndex": 621, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 621, - "endIndex": 642, - "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" - } - } - }, - { - "startIndex": 621, - "endIndex": 642, - "textRun": { - "content": "Post-test questions:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 642, - "endIndex": 799, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "1)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 642, - "endIndex": 799, - "textRun": { - "content": "Did the scaffolding give you a better idea of how to write the script? Were you able to map out the root causes and the strategies in the script you wrote?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 799, - "endIndex": 887, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "2)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 799, - "endIndex": 887, - "textRun": { - "content": "Can you walk me through the logic you have? How do you think this is going to execute? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 887, - "endIndex": 929, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "3)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 887, - "endIndex": 929, - "textRun": { - "content": "What worked well for you in this process?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 929, - "endIndex": 968, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "4)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 929, - "endIndex": 968, - "textRun": { - "content": "What didn’t work well? Any confusions?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 968, - "endIndex": 1029, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "5)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 968, - "endIndex": 1029, - "textRun": { - "content": "Were you able to find the blocks you needed? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1029, - "endIndex": 1095, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "6)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1029, - "endIndex": 1095, - "textRun": { - "content": "Were you able to understand what each block does? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1095, - "endIndex": 1096, - "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" - } - } - }, - { - "startIndex": 1095, - "endIndex": 1096, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1096, - "endIndex": 1097, - "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" - } - } - }, - { - "startIndex": 1096, - "endIndex": 1097, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1097, - "endIndex": 1098, - "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" - } - } - }, - { - "startIndex": 1097, - "endIndex": 1098, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.qle4dnaitz2w": { - "listId": "kix.qle4dnaitz2w", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "We expect to learn: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 252, - "textRun": { - "content": "- Is the user able to identify root causes and map them to strategies using the scaffolding interface they have? Were they able to identify that different students would struggle with different things/need different kinds of help?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 357, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 357, - "textRun": { - "content": "- Are they able to express what they wrote about in the scaffolding steps using blocks? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 357, - "endIndex": 358, - "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" - } - } - }, - { - "startIndex": 357, - "endIndex": 358, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 358, - "endIndex": 449, - "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" - } - } - }, - { - "startIndex": 358, - "endIndex": 449, - "textRun": { - "content": "- How does the user get to deciding on what blocks they need to bring this script to life?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 449, - "endIndex": 450, - "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" - } - } - }, - { - "startIndex": 449, - "endIndex": 450, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 450, - "endIndex": 488, - "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" - } - } - }, - { - "startIndex": 450, - "endIndex": 488, - "textRun": { - "content": "- Can they find the blocks they need?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 488, - "endIndex": 489, - "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" - } - } - }, - { - "startIndex": 488, - "endIndex": 489, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 489, - "endIndex": 533, - "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" - } - } - }, - { - "startIndex": 489, - "endIndex": 533, - "textRun": { - "content": "- Do they understand what each block does? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 533, - "endIndex": 534, - "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" - } - } - }, - { - "startIndex": 533, - "endIndex": 534, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 534, - "endIndex": 610, - "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" - } - } - }, - { - "startIndex": 534, - "endIndex": 610, - "textRun": { - "content": "- Do they use each block as intended? If not, why? How else do they use it?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 610, - "endIndex": 611, - "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" - } - } - }, - { - "startIndex": 610, - "endIndex": 611, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 611, - "endIndex": 612, - "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" - } - } - }, - { - "startIndex": 611, - "endIndex": 612, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 612, - "endIndex": 633, - "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" - } - } - }, - { - "startIndex": 612, - "endIndex": 633, - "textRun": { - "content": "Potential measures: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 633, - "endIndex": 634, - "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" - } - } - }, - { - "startIndex": 633, - "endIndex": 634, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 634, - "endIndex": 739, - "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" - } - } - }, - { - "startIndex": 634, - "endIndex": 739, - "textRun": { - "content": "Number of blocks the user misused → used in a wrong way/a way that wouldn’t yield their expected outcome\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 739, - "endIndex": 740, - "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" - } - } - }, - { - "startIndex": 739, - "endIndex": 740, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 740, - "endIndex": 786, - "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" - } - } - }, - { - "startIndex": 740, - "endIndex": 786, - "textRun": { - "content": "Number of root causes identified → at least 2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 786, - "endIndex": 787, - "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" - } - } - }, - { - "startIndex": 786, - "endIndex": 787, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 787, - "endIndex": 821, - "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" - } - } - }, - { - "startIndex": 787, - "endIndex": 821, - "textRun": { - "content": "Number of strategies → at least 2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 821, - "endIndex": 822, - "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" - } - } - }, - { - "startIndex": 821, - "endIndex": 822, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 822, - "endIndex": 948, - "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" - } - } - }, - { - "startIndex": 822, - "endIndex": 948, - "textRun": { - "content": "Compare the script they built with the script we built (and know works). How much did they get right? What parts would break?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 948, - "endIndex": 949, - "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" - } - } - }, - { - "startIndex": 948, - "endIndex": 949, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 949, - "endIndex": 1033, - "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" - } - } - }, - { - "startIndex": 949, - "endIndex": 1033, - "textRun": { - "content": "[Not that important] how long did it take the user to go through the whole process?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2554400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 186, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 186, - "textRun": { - "content": "✅/❌ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 69, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "✅/❌ Do you include who the users are, and how you will recruit them?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 150, - "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" - } - } - }, - { - "startIndex": 70, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Do you include how you will communicate with your users during your study? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 240, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 240, - "textRun": { - "content": "✅/❌ Do you consider any access issues that may prevent you from running your user tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 93, - "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" - } - } - }, - { - "endIndex": 93, - "textRun": { - "content": "✅/❌ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 218, - "textRun": { - "content": "✅/❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 219, - "endIndex": 328, - "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" - } - } - }, - { - "startIndex": 219, - "endIndex": 328, - "textRun": { - "content": "✅/❌ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 328, - "endIndex": 329, - "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" - } - } - }, - { - "startIndex": 328, - "endIndex": 329, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 329, - "endIndex": 481, - "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" - } - } - }, - { - "startIndex": 329, - "endIndex": 481, - "textRun": { - "content": "✅/❌ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 481, - "endIndex": 482, - "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" - } - } - }, - { - "startIndex": 481, - "endIndex": 482, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 482, - "endIndex": 554, - "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" - } - } - }, - { - "startIndex": 482, - "endIndex": 554, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅/❌ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 207, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 207, - "textRun": { - "content": "✅/❌ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "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" - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 208, - "endIndex": 307, - "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" - } - } - }, - { - "startIndex": 208, - "endIndex": 307, - "textRun": { - "content": "✅/❌ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g215e1dfdce3_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g215e1dfdce3_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 14, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 13, - "textRun": { - "content": "Grace & Rawan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 14, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g215e1dfdce3_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g215e1dfdce3_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g215e1dfdce3_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g215e1dfdce3_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g10e508e5387_0_11", - "pageElements": [ - { - "objectId": "g10e508e5387_0_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.1776, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 59, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 59, - "textRun": { - "content": "Takeaways from User Testing #1(with Gobi)\n", - "style": {} - } - }, - { - "startIndex": 59, - "endIndex": 76, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 59, - "endIndex": 76, - "textRun": { - "content": "Do all 6 slides!\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g10e508e5387_0_11:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g10e508e5387_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g10e508e5387_0_14", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g10e508e5387_0_14" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_0", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Mind Dump / “Off the top”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 127, - "textRun": { - "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 128, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 49, - "textRun": { - "content": "Restate your Problem Statement + Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 136, - "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" - } - } - }, - { - "startIndex": 49, - "endIndex": 135, - "textRun": { - "content": "What was your problem statement and design argument that you tested in this user test?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 135, - "endIndex": 136, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Testing Scenario + Measures", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 120, - "textRun": { - "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Individual Key Insights", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 93, - "textRun": { - "content": "As individuals, where were some insights you had from the user test? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Synthesize Key Insights as a Group\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "textRun": { - "content": "As a group, what were your key insights?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4266450, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1, - "endIndex": 154, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1, - "endIndex": 154, - "textRun": { - "content": "Most of the detection tools that the mentor came up with to detect specific root causes were based off of substring matching and detecting certain words\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 154, - "endIndex": 315, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 154, - "endIndex": 315, - "textRun": { - "content": "We didn’t provide the list of tools for detection, so the user came up with detection signals that are out of scope → not detectable by our current system model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 315, - "endIndex": 485, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 315, - "endIndex": 485, - "textRun": { - "content": "When we interviewed the mentee, they said that the cause for the problem was the first root cause that the mentor identified → Do we need to overcomplicate this process?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 485, - "endIndex": 704, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 485, - "endIndex": 704, - "textRun": { - "content": "The strategies that the student mentioned were (1) the mentor should check in regularly and give feedback to validate their thinking and (2) ask them to come up with risks individually before SIG (in the case of teams)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 704, - "endIndex": 758, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 704, - "endIndex": 758, - "textRun": { - "content": "The strategies the mentor came up with were on point \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 758, - "endIndex": 759, - "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" - } - } - }, - { - "startIndex": 758, - "endIndex": 759, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 759, - "endIndex": 760, - "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" - } - } - }, - { - "startIndex": 759, - "endIndex": 760, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5ri3mahafe48": { - "listId": "kix.5ri3mahafe48", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.i113f9cri0bo": { - "listId": "kix.i113f9cri0bo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.s9sznpijevks": { - "listId": "kix.s9sznpijevks", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "Restate the problem and design you set out to test with the design sprint you just completed.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 123, - "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" - } - } - }, - { - "endIndex": 123, - "textRun": { - "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 210, - "textRun": { - "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 210, - "endIndex": 216, - "textRun": { - "content": " Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 214, - "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" - } - } - }, - { - "endIndex": 214, - "textRun": { - "content": "This test leads us to think that the current model of scaffolding leads the mentors to arrive to root causes and strategies that are on point and perceived as helpful to the mentee (at least for simpler scenarios)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 375, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 375, - "textRun": { - "content": "Since this part of the process seems successful, we should consider shifting gears to focus on how the mentor can realize this script after scaffolding for it \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 375, - "endIndex": 376, - "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" - } - } - }, - { - "startIndex": 375, - "endIndex": 376, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 376, - "endIndex": 509, - "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" - } - } - }, - { - "startIndex": 376, - "endIndex": 509, - "textRun": { - "content": "Tools should be presented clearly to the user so that they understand what the scripting environment affords/can’t afford to measure\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "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" - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 510, - "endIndex": 511, - "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" - } - } - }, - { - "startIndex": 510, - "endIndex": 511, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "Synthesize a list of 4-5 key insights across your team.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4266450, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2117e6dac59_1_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Quick Takeaways from User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2117e6dac59_1_3", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_4", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_5", - "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": 148, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "Look at some of the prompts in ", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 146, - "textRun": { - "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61", - "style": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "HYPERLINK" - } - }, - "link": { - "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61" - }, - "underline": true - } - } - }, - { - "startIndex": 146, - "endIndex": 148, - "textRun": { - "content": " \n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_5" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_83", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_84", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 6, - "tableRows": [ - { - "rowHeight": { - "magnitude": 784000, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 31, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "Restate your Problem Statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 31, - "endIndex": 97, - "textRun": { - "content": "What was your problem statement before going into your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 12, - "textRun": { - "content": "User classes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 12, - "endIndex": 13, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 69, - "textRun": { - "content": "How has your understanding of your user classes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Users’ needs and goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 95, - "textRun": { - "content": "How has your understanding of users’ high-level needs and goals changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Current solutions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 97, - "textRun": { - "content": "Did you learn more about existing solutions that users have, and how they work?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 139, - "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" - } - } - }, - { - "endIndex": 39, - "textRun": { - "content": "Users’ obstacles to meeting their goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 39, - "endIndex": 40, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 138, - "textRun": { - "content": "Did you learn more about why users are not able to meet their goal, with or without your solution?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Problem statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 142, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 141, - "textRun": { - "content": "How has your problem statement changed? What assumptions were correct/incorrect? What parts of the problem were reinforced?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 141, - "endIndex": 142, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 784000, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2544750, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2544750, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1483250, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 24, - "textRun": { - "content": "No checklist questions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 80, - "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" - } - } - }, - { - "endIndex": 80, - "textRun": { - "content": "✅/❌ Did you include any new user classes you have identified through your test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 146, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 146, - "textRun": { - "content": "✅/❌Did you include any new characteristics of your user classes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 232, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 232, - "textRun": { - "content": "✅/❌Did your findings reinforce any previously user classes or their characteristics?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 111, - "textRun": { - "content": "✅/❌ Did you include any new needs/goals (or update existing ones) based on your findings?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "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" - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 112, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 112, - "endIndex": 184, - "textRun": { - "content": "✅/❌ Did your findings reinforce any previously identified needs/goals? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "For each existing solution:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Have you discovered new solutions that users have attempted to meet their needs? If so, do you explain how these work?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 175, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 175, - "textRun": { - "content": "✅/❌ Have you discovered new obstacles to existing solutions, or your solution? If so, do you explain why users are having struggles with those solutions?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 175, - "endIndex": 176, - "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" - } - } - }, - { - "startIndex": 175, - "endIndex": 176, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 176, - "endIndex": 315, - "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" - } - } - }, - { - "startIndex": 176, - "endIndex": 315, - "textRun": { - "content": "✅/❌ Did your design uncover new obstacles that prevented users from reaching their goal? If so, did you explain why those obstacles exist?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "For each problem statement:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 104, - "textRun": { - "content": "✅/❌ Does your updated problem statement capture any new needs or obstacles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 105, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 105, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 185, - "textRun": { - "content": "✅/❌ Do you include a problem statement for any new user classes you discovered?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1483250, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_85", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 54, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "Mysore Template: Understanding Your Problem Statement", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_86", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_83:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_87", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_88", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_88" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_89", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_90", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 671900, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Restate your Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 97, - "textRun": { - "content": "What was your design argument that you were testing this user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Desired User Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 85, - "textRun": { - "content": "How has your understanding of the desired user outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Obstacles to user outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 80, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 80, - "textRun": { - "content": "How has your understanding of the obstacles changed? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 278, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 278, - "textRun": { - "content": "Was the main practical obstacle the same as the conceptual obstacle? In other words, is it some usability problem that is blocking progress, or is it the actual obstacle from your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Design Characteristic\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 92, - "textRun": { - "content": "In what ways were your design characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Argument for your design\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "textRun": { - "content": "What did you learn about the argument for how your characteristics can overcome the obstacles to reach user outcomes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 671900, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2850650, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2850650, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1289475, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Based on your user testing, did you have an updated description of what users want to be able to do?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 328, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 142, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 328, - "textRun": { - "content": " want users to do? In other words, did your users use your previous design in an unanticipated way that was not desirable, or helped you understand what outcomes users don’t care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 72, - "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" - } - } - }, - { - "endIndex": 72, - "textRun": { - "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 73, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 73, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Did you include any new understanding about why designs fail?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "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" - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 140, - "endIndex": 326, - "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" - } - } - }, - { - "startIndex": 140, - "endIndex": 311, - "textRun": { - "content": "✅/❌ Does your understanding of obstacles point to what kinds of designs may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 311, - "endIndex": 314, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 314, - "endIndex": 326, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 97, - "textRun": { - "content": "✅/❌ Did your characteristics support users in achieving the high-level outcomes they care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 74, - "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" - } - } - }, - { - "endIndex": 74, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 74, - "endIndex": 75, - "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" - } - } - }, - { - "startIndex": 74, - "endIndex": 75, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 75, - "endIndex": 148, - "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" - } - } - }, - { - "startIndex": 75, - "endIndex": 148, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "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" - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1289475, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_91", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 52, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Mysore Template: Understanding Your Design Argument", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 52, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_92", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_89:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_93", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_94", - "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": 143, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Check the updated prompts ", - "style": {} - } - }, - { - "startIndex": 26, - "endIndex": 141, - "textRun": { - "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73", - "style": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "HYPERLINK" - } - }, - "link": { - "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73" - }, - "underline": true - } - } - }, - { - "startIndex": 141, - "endIndex": 143, - "textRun": { - "content": " \n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_94" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_95", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_96", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 570175, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Restate your Interface Model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 139, - "textRun": { - "content": "What was the interface model you used to implement your design argument that you were testing this user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Desired Interface Outcomes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 96, - "textRun": { - "content": "How has your understanding of the desired interface outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 96, - "endIndex": 97, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Obstacle to Interface Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 30, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 30, - "endIndex": 83, - "textRun": { - "content": "How has your understanding of the obstacles changed? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 84, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Interface Feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 91, - "textRun": { - "content": "In what ways were your interface characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Argument for your interface feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 164, - "textRun": { - "content": "What did you learn about the argument for how your interface feature can overcome the obstacles to reach the interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 570175, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2938725, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2938725, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1303100, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 146, - "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" - } - } - }, - { - "endIndex": 146, - "textRun": { - "content": "✅/❌ Based on your user testing, do you have an updated description of what your interface needs to do in order to implement your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 359, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 180, - "textRun": { - "content": "✅/❌ Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 183, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 359, - "textRun": { - "content": " want your interface to allow? In other words, did your users use your previous interface in an unanticipated way that was not desirable to instantiating your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 72, - "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" - } - } - }, - { - "endIndex": 72, - "textRun": { - "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 73, - "endIndex": 150, - "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" - } - } - }, - { - "startIndex": 73, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Did you include any new understanding about why interface features fail?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 348, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 333, - "textRun": { - "content": "✅/❌ Does your understanding of obstacles point to what kinds of interface features may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 333, - "endIndex": 336, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 336, - "endIndex": 348, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 74, - "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" - } - } - }, - { - "endIndex": 74, - "textRun": { - "content": "✅/❌ Did your interface feature realize your design argument as intended? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 84, - "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" - } - } - }, - { - "endIndex": 84, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the interface argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 168, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the interface argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 169, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 169, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1303100, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_97", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 52, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Mysore Template: Understanding Your Interface Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 52, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_98", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_95:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_99", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_100", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_100" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_101", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_102", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 514350, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Restate your System Model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 96, - "textRun": { - "content": "What was the system model you used to implement your interface model?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Desired System Outcomes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 90, - "textRun": { - "content": "How has your understanding of the desired system outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Obstacle to System Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 80, - "textRun": { - "content": "How has your understanding of the obstacles changed? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "System Methods or Techniques\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 99, - "textRun": { - "content": "In what ways were your system characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Argument for your system method/technique\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 158, - "textRun": { - "content": "What did you learn about the argument for how your approach can overcome the obstacles to reach the system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 514350, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2967625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2967625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1298850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 142, - "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" - } - } - }, - { - "endIndex": 142, - "textRun": { - "content": "✅/❌Based on your user testing, do you have an updated description of what your system needs to do in order to implement your interface model?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 143, - "endIndex": 290, - "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" - } - } - }, - { - "startIndex": 143, - "endIndex": 175, - "textRun": { - "content": "✅/❌Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 175, - "endIndex": 178, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 178, - "endIndex": 290, - "textRun": { - "content": " want your system model to allow? In other words, did your users attempt to use your system in unintended ways?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 71, - "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" - } - } - }, - { - "endIndex": 71, - "textRun": { - "content": "✅/❌Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 71, - "endIndex": 72, - "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" - } - } - }, - { - "startIndex": 71, - "endIndex": 72, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 157, - "textRun": { - "content": "✅/❌Did you include any new understanding about why your system implementation fails?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 157, - "endIndex": 158, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 158, - "endIndex": 358, - "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" - } - } - }, - { - "startIndex": 158, - "endIndex": 343, - "textRun": { - "content": "✅/❌Does your understanding of obstacles point to what kinds of system implementations may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 343, - "endIndex": 346, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 346, - "endIndex": 358, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 118, - "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" - } - } - }, - { - "endIndex": 118, - "textRun": { - "content": "✅/❌Did your system model (and associated implementation methods/techniques) realize your interface model as intended?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 81, - "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" - } - } - }, - { - "endIndex": 81, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the system argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 162, - "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" - } - } - }, - { - "startIndex": 82, - "endIndex": 162, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the system argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 162, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 162, - "endIndex": 163, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1298850, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_103", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Understanding Your System Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_104", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_101:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_105", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_106", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_106" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_107", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_108", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 121, - "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" - } - } - }, - { - "endIndex": 121, - "textRun": { - "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "textRun": { - "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "textRun": { - "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "textRun": { - "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "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" - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_109", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_110", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_107:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_111", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_112", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_112" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_6", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.1776, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "textRun": { - "content": "Takeaways from User Testing #2 (with Li)\n", - "style": {} - } - }, - { - "startIndex": 58, - "endIndex": 75, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 58, - "endIndex": 75, - "textRun": { - "content": "Do all 6 slides!\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_6:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_10", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_11", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Mind Dump / “Off the top”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 127, - "textRun": { - "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 128, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 49, - "textRun": { - "content": "Restate your Problem Statement + Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 136, - "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" - } - } - }, - { - "startIndex": 49, - "endIndex": 135, - "textRun": { - "content": "What was your problem statement and design argument that you tested in this user test?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 135, - "endIndex": 136, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Testing Scenario + Measures", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 120, - "textRun": { - "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Individual Key Insights", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 93, - "textRun": { - "content": "As individuals, where were some insights you had from the user test? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Synthesize Key Insights as a Group\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "textRun": { - "content": "As a group, what were your key insights?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4266450, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 66, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "endIndex": 66, - "textRun": { - "content": "1. Li thought the Applicable Set block is for detecting situation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 254, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 66, - "endIndex": 180, - "textRun": { - "content": "2. Assumed the script will operate for all projects, and the script will automatically operate for each sprint -> ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 254, - "textRun": { - "content": "need to specific execution logic of the system or do something equivalent\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "themeColor": "ACCENT6" - } - }, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 254, - "endIndex": 291, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 254, - "endIndex": 291, - "textRun": { - "content": "3. Didn’t specify part of the sprint\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 291, - "endIndex": 339, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 291, - "endIndex": 339, - "textRun": { - "content": "4. Clicked on the white tab in tools categories\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 339, - "endIndex": 512, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 339, - "endIndex": 433, - "textRun": { - "content": "5. Text send block -> medium is place/who you are sending to (SIG OH blocks are confusing) -> ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 433, - "endIndex": 512, - "textRun": { - "content": "should raise error when blocks other than slack or email is attached to medium\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "themeColor": "ACCENT6" - } - }, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 512, - "endIndex": 677, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 512, - "endIndex": 632, - "textRun": { - "content": "6. Want to ask the question at SIG -> thought the text send block would send right at the SIG so he will bring it up -> ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 632, - "endIndex": 676, - "textRun": { - "content": "need guidance on which block should go where", - "style": { - "backgroundColor": { - "opaqueColor": { - "themeColor": "ACCENT6" - } - }, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 676, - "endIndex": 677, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5ri3mahafe48": { - "listId": "kix.5ri3mahafe48", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.8205q01gxa3e": { - "listId": "kix.8205q01gxa3e", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.i113f9cri0bo": { - "listId": "kix.i113f9cri0bo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.s9sznpijevks": { - "listId": "kix.s9sznpijevks", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 212, - "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" - } - } - }, - { - "endIndex": 212, - "textRun": { - "content": "This test was for testing our Interface argument: with blockly workspace, mentors would be able to write scripts that they want to using our interface (after they have a clear idea of what they’re scripting for)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 212, - "endIndex": 213, - "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" - } - } - }, - { - "startIndex": 212, - "endIndex": 213, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 213, - "endIndex": 214, - "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" - } - } - }, - { - "startIndex": 213, - "endIndex": 214, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 123, - "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" - } - } - }, - { - "endIndex": 123, - "textRun": { - "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 210, - "textRun": { - "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 210, - "endIndex": 216, - "textRun": { - "content": " Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 322, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 322, - "textRun": { - "content": "We set out to test this by asking the user to script for a simple yet frequent situation that we chose: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 322, - "endIndex": 400, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.co5ukh9un64i", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 322, - "endIndex": 400, - "textRun": { - "content": "Write a script that will detect if any project is over-committing in a sprint\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 400, - "endIndex": 446, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.co5ukh9un64i", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 400, - "endIndex": 446, - "textRun": { - "content": "This script should run for the entire quarter\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 446, - "endIndex": 564, - "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" - } - } - }, - { - "startIndex": 446, - "endIndex": 564, - "textRun": { - "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 564, - "endIndex": 565, - "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" - } - } - }, - { - "startIndex": 564, - "endIndex": 565, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 565, - "endIndex": 627, - "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" - } - } - }, - { - "startIndex": 565, - "endIndex": 626, - "textRun": { - "content": "Strategy: open-ended, (e.g. send out slack message to mentor)", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 626, - "endIndex": 627, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 627, - "endIndex": 628, - "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" - } - } - }, - { - "startIndex": 627, - "endIndex": 628, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 628, - "endIndex": 629, - "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" - } - } - }, - { - "startIndex": 628, - "endIndex": 629, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 629, - "endIndex": 663, - "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" - } - } - }, - { - "startIndex": 629, - "endIndex": 663, - "textRun": { - "content": "If interface argument == correct:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 663, - "endIndex": 737, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.eg76jxd69d", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 6, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 663, - "endIndex": 737, - "textRun": { - "content": "User should be able to write a script close to the sample script smoothly\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 737, - "endIndex": 893, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.eg76jxd69d", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 737, - "endIndex": 893, - "textRun": { - "content": "Measurements:\u000b- correctness of script (most important)\u000b- degree of confusion in the scripting process\u000b- any misunderstanding of blocks/interface components\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 893, - "endIndex": 894, - "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" - } - } - }, - { - "startIndex": 893, - "endIndex": 894, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.co5ukh9un64i": { - "listId": "kix.co5ukh9un64i", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.eg76jxd69d": { - "listId": "kix.eg76jxd69d", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "Synthesize a list of 4-5 key insights across your team.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4266450, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2117e6dac59_1_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Quick Takeaways from User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2117e6dac59_1_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_10:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_14", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_15", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_15" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_40", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_41", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 138, - "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" - } - } - }, - { - "endIndex": 138, - "textRun": { - "content": "Whether user will be able to compose the correct script for a specified situation (or something close to the correct script that works). \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 6, - "textRun": { - "content": "Yes. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 6, - "endIndex": 7, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 7, - "endIndex": 172, - "textRun": { - "content": "Li is not a mentor, but we’re trying to expand our user group to include students, so it’s really valuable to test with a student who have not used our tool before.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 118, - "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" - } - } - }, - { - "endIndex": 118, - "textRun": { - "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 181, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 181, - "textRun": { - "content": "Strategy: open-ended, (e.g. send out slack message to mentor)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "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" - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 121, - "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" - } - } - }, - { - "endIndex": 121, - "textRun": { - "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "textRun": { - "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "textRun": { - "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "textRun": { - "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "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" - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2117e6dac59_1_42", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2117e6dac59_1_43", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_40:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_44", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_45", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_45" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1d1402d483f_0_0", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.1776, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 61, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 61, - "textRun": { - "content": "Takeaways from User Testing #3 (with Haoqi)\n", - "style": {} - } - }, - { - "startIndex": 61, - "endIndex": 62, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 61, - "endIndex": 62, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1d1402d483f_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1d1402d483f_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1d1402d483f_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1d1402d483f_0_4", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Mind Dump / “Off the top”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 127, - "textRun": { - "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 128, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 49, - "textRun": { - "content": "Restate your Problem Statement + Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 136, - "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" - } - } - }, - { - "startIndex": 49, - "endIndex": 135, - "textRun": { - "content": "What was your problem statement and design argument that you tested in this user test?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 135, - "endIndex": 136, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Testing Scenario + Measures", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 120, - "textRun": { - "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Individual Key Insights", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 93, - "textRun": { - "content": "As individuals, where were some insights you had from the user test? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Synthesize Key Insights as a Group\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "textRun": { - "content": "As a group, what were your key insights?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4266450, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Problem statement: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 110, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 110, - "textRun": { - "content": "Mentors face abstraction challenges when they try to script for ill-structured problems. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 110, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 110, - "endIndex": 111, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 189, - "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" - } - } - }, - { - "startIndex": 111, - "endIndex": 189, - "textRun": { - "content": "For this slice, we’re focusing on the problem of underscoped on root causes. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 189, - "endIndex": 221, - "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" - } - } - }, - { - "startIndex": 189, - "endIndex": 221, - "textRun": { - "content": "It’s often hard for mentors to \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 221, - "endIndex": 222, - "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" - } - } - }, - { - "startIndex": 221, - "endIndex": 222, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 222, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 222, - "endIndex": 223, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 123, - "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" - } - } - }, - { - "endIndex": 123, - "textRun": { - "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 210, - "textRun": { - "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 210, - "endIndex": 216, - "textRun": { - "content": " Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ], - "lists": { - "kix.co5ukh9un64i": { - "listId": "kix.co5ukh9un64i", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.eg76jxd69d": { - "listId": "kix.eg76jxd69d", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "Synthesize a list of 4-5 key insights across your team.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4266450, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g1d1402d483f_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Quick Takeaways from User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g1d1402d483f_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1d1402d483f_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1d1402d483f_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1d1402d483f_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1d1402d483f_0_10", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_11", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 138, - "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" - } - } - }, - { - "endIndex": 138, - "textRun": { - "content": "Whether user will be able to compose the correct script for a specified situation (or something close to the correct script that works). \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 6, - "textRun": { - "content": "Yes. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 6, - "endIndex": 7, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 7, - "endIndex": 172, - "textRun": { - "content": "Li is not a mentor, but we’re trying to expand our user group to include students, so it’s really valuable to test with a student who have not used our tool before.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 118, - "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" - } - } - }, - { - "endIndex": 118, - "textRun": { - "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 181, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 181, - "textRun": { - "content": "Strategy: open-ended, (e.g. send out slack message to mentor)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "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" - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 121, - "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" - } - } - }, - { - "endIndex": 121, - "textRun": { - "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "textRun": { - "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "textRun": { - "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "textRun": { - "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "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" - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g1d1402d483f_0_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g1d1402d483f_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1d1402d483f_0_10:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_14", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1d1402d483f_0_15", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1d1402d483f_0_15" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1155fa25785_0_0", - "pageElements": [ - { - "objectId": "g1155fa25785_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.514, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 42, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 42, - "textRun": { - "content": "Organizing Core Findings\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1155fa25785_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1155fa25785_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1155fa25785_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1155fa25785_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1155fa25785_0_4", - "pageElements": [ - { - "objectId": "g1155fa25785_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 4, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 16, - "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" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "Statement of RQ\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 197, - "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" - } - } - }, - { - "startIndex": 16, - "endIndex": 197, - "textRun": { - "content": "Typically of the form: Does these design characteristics achieve the desired outcome? How does these design characteristics help to overcome the obstacles to reaching this outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "What is your finding? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 60, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 60, - "textRun": { - "content": "One sentence summary of core finding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 34, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Provide Evidence for Core Finding", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 34, - "endIndex": 80, - "textRun": { - "content": "Relevant tables, figures, charts, quotes, etc.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Implications for Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 123, - "textRun": { - "content": "Based on this finding, what part of your design argument was (1) correct and (2) incorrect", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 125, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 125, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Limitations and Remaining Obstacles\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 101, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 101, - "textRun": { - "content": "What parts of your design argument or claims couldn't be tested?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 101, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 101, - "endIndex": 172, - "textRun": { - "content": "What new obstacles were encountered for reaching the desired outcomes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1644725, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "RQ about outcomes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.i113f9cri0bo": { - "listId": "kix.i113f9cri0bo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.s9sznpijevks": { - "listId": "kix.s9sznpijevks", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "Perhaps a table or a chart, that shows that the problem has been overcome (i.e., the outcome is reached)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Describe correct parts of design argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "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" - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "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" - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 89, - "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" - } - } - }, - { - "startIndex": 45, - "endIndex": 89, - "textRun": { - "content": "Describe incorrect parts of design argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 89, - "endIndex": 90, - "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" - } - } - }, - { - "startIndex": 89, - "endIndex": 90, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Describe what couldn't be tested\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "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" - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 55, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 54, - "textRun": { - "content": "Describe obstacles", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 54, - "endIndex": 55, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1644725, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1347550, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "RQ about mechanisms\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 152, - "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" - } - } - }, - { - "endIndex": 152, - "textRun": { - "content": "Perhaps an example or quote, that helps to illustrate how one of the core distinguishing characteristics supported solving the problem (the mechanisms)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 152, - "endIndex": 153, - "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" - } - } - }, - { - "startIndex": 152, - "endIndex": 153, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Describe correct parts of design argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "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" - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "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" - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 89, - "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" - } - } - }, - { - "startIndex": 45, - "endIndex": 89, - "textRun": { - "content": "Describe incorrect parts of design argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 89, - "endIndex": 90, - "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" - } - } - }, - { - "startIndex": 89, - "endIndex": 90, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Describe what couldn't be tested\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "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" - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 55, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 55, - "textRun": { - "content": "Describe obstacles\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1347550, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1080500, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 87, - "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" - } - } - }, - { - "endIndex": 87, - "textRun": { - "content": "✅/❌ Have you created an RQ about mechanisms, or how characteristic overcomes obstacle?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 76, - "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" - } - } - }, - { - "endIndex": 76, - "textRun": { - "content": "✅/❌ Could what you wrote be used as a topic sentence in a results section?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 76, - "endIndex": 77, - "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" - } - } - }, - { - "startIndex": 76, - "endIndex": 77, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 77, - "endIndex": 179, - "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" - } - } - }, - { - "startIndex": 77, - "endIndex": 179, - "textRun": { - "content": "✅/❌ Have you written findings for both the outcome (does it work), and the mechanism (why it works)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 97, - "textRun": { - "content": "✅/❌ Have you presented or explained the evidence, rather than just showing/listing the measure?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 4, - "textRun": { - "content": "✅/❌ ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 4, - "textRun": { - "content": "✅/❌ ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1080500, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g1155fa25785_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 34, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Mysore Template: Findings/Results", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g1155fa25785_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1155fa25785_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1155fa25785_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1155fa25785_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1155fa25785_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_113", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_114", - "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": 9, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 9, - "textRun": { - "content": "Planning\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 9, - "endIndex": 45, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 9, - "endIndex": 44, - "textRun": { - "content": "Risk Assessment and Troubleshooting", - "style": {} - } - }, - { - "startIndex": 44, - "endIndex": 45, - "textRun": { - "content": "\n", - "style": { - "bold": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_113:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_115", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_116", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_116" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_117", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_118", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 606925, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 2, - "tableRows": [ - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Reflect on your learning\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 107, - "textRun": { - "content": "What new things did you learn last week about your problem, users, designs, etc.?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.pm2gxt1dmu7h": { - "listId": "kix.pm2gxt1dmu7h", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Gaps in your understanding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 142, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 142, - "textRun": { - "content": "Based on your write-up of your current understanding, what gaps or risks do you still have in your understanding? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 143, - "endIndex": 222, - "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" - } - } - }, - { - "startIndex": 143, - "endIndex": 222, - "textRun": { - "content": "Why are they risks (i.e., why are they important to address before moving on)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 222, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 222, - "endIndex": 223, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 223, - "endIndex": 296, - "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" - } - } - }, - { - "startIndex": 223, - "endIndex": 296, - "textRun": { - "content": "(Hint: have you answered all the scaffolding questions for each prompt?)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.spscosx982zh": { - "listId": "kix.spscosx982zh", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "Prioritizing Risks\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 111, - "textRun": { - "content": "What are the 1-2 risks that are the most important to address in the following sprint? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.w0r4mja39gtj": { - "listId": "kix.w0r4mja39gtj", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1976025, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2549550, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_119", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.499, - "scaleY": 0.0918, - "translateY": 331700.185, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 46, - "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" - } - } - }, - { - "endIndex": 45, - "textRun": { - "content": "Assessing Current Risks in Your Understanding", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 46, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_120", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.0918, - "translateX": 4572000, - "translateY": 331497.87, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Planning Your Next Sprint", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_121", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateX": 4572000, - "translateY": 606923.8875, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 2, - "tableRows": [ - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Goal of your next sprint\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 103, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 103, - "textRun": { - "content": "What do you need to do to address the risks that you prioritized on the left?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 155, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 155, - "textRun": { - "content": "What do you already know, and what don’t you know?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 155, - "endIndex": 156, - "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" - } - } - }, - { - "startIndex": 155, - "endIndex": 156, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 156, - "endIndex": 231, - "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" - } - } - }, - { - "startIndex": 156, - "endIndex": 231, - "textRun": { - "content": "What is a deliverable you could work towards that would address this risk?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.j99w4xk6070m": { - "listId": "kix.j99w4xk6070m", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.pm2gxt1dmu7h": { - "listId": "kix.pm2gxt1dmu7h", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.rx3k85e9ilce": { - "listId": "kix.rx3k85e9ilce", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.yq43m1osz8ba": { - "listId": "kix.yq43m1osz8ba", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Roadblocks to meeting goal\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 84, - "textRun": { - "content": "What might go wrong in trying to address your risk? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 161, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 161, - "textRun": { - "content": "What have you tried already to address this risk? Why has that not worked? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.spscosx982zh": { - "listId": "kix.spscosx982zh", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.uv117p62fl0i": { - "listId": "kix.uv117p62fl0i", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 44, - "textRun": { - "content": "Strategies to overcome potential roadblocks\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 235, - "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" - } - } - }, - { - "startIndex": 44, - "endIndex": 235, - "textRun": { - "content": "What are some ways that you can work to address your risks, given the obstacles above and the constraints of the 1-week sprint? (e.g., are there different needfinding methods you could try?)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 235, - "endIndex": 236, - "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" - } - } - }, - { - "startIndex": 235, - "endIndex": 236, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 236, - "endIndex": 388, - "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" - } - } - }, - { - "startIndex": 236, - "endIndex": 388, - "textRun": { - "content": "What are specific tasks you might do? What would be the deliverable of each of those tasks? How would they contribute to your overall goal/deliverable?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.w0r4mja39gtj": { - "listId": "kix.w0r4mja39gtj", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2047875, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2524125, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_122", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 46, - "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" - } - } - }, - { - "endIndex": 45, - "textRun": { - "content": "Mysore Template: Risk Assessment and Planning", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 46, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_123", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_117:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_124", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_125", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_125" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_126", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_127", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 349202.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 430300, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "Goal\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 5, - "endIndex": 75, - "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" - } - } - }, - { - "startIndex": 5, - "endIndex": 75, - "textRun": { - "content": "What do you want to learn this week or sprint? Why is this important?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 32, - "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" - } - } - }, - { - "endIndex": 32, - "textRun": { - "content": "Roadblocks to meeting your goal\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 32, - "endIndex": 83, - "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" - } - } - }, - { - "startIndex": 32, - "endIndex": 83, - "textRun": { - "content": "What might go wrong in trying meet your goal? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 122, - "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" - } - } - }, - { - "endIndex": 43, - "textRun": { - "content": "Strategies to overcome potential roadblocks", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 121, - "textRun": { - "content": "What are some ways that you might overcome your obstacles to meet your goal? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 96, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Argument for success", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 95, - "textRun": { - "content": "Why might your strategy to overcome the potential roadblock be successful?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 430300, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2876225, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2876225, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1439200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 65, - "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" - } - } - }, - { - "endIndex": 65, - "textRun": { - "content": "✅/❌ Do you state what you know already and what you don’t know? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 179, - "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" - } - } - }, - { - "startIndex": 66, - "endIndex": 179, - "textRun": { - "content": "✅/❌ Do you state why you want to learn this new thing and why it would be helpful to your project/understanding?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 179, - "endIndex": 180, - "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" - } - } - }, - { - "startIndex": 179, - "endIndex": 180, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 373, - "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" - } - } - }, - { - "startIndex": 180, - "endIndex": 273, - "textRun": { - "content": "✅/❌ Do you state what success or a set of deliverables would look like if you met your goal? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 273, - "endIndex": 372, - "textRun": { - "content": "(hint: think about ways you could meet your goal as stated, but NOT learn what you wanted to learn)", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 372, - "endIndex": 373, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 79, - "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" - } - } - }, - { - "endIndex": 79, - "textRun": { - "content": "✅/❌ Do you state why each roadblock might prevent you from reaching your goal?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 79, - "endIndex": 80, - "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" - } - } - }, - { - "startIndex": 79, - "endIndex": 80, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 215, - "textRun": { - "content": "✅/❌ Is each roadblock specific enough that you can consider a potential solution later on? (if not, consider breaking it down further)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 216, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 318, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 318, - "textRun": { - "content": "✅/❌ Do you include previous approaches to meeting your goal, and why those have not been successful? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 65, - "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" - } - } - }, - { - "endIndex": 65, - "textRun": { - "content": "✅/❌ Does your strategy include specific tasks that you might do?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 66, - "endIndex": 172, - "textRun": { - "content": "✅/❌ Does your strategy include specific deliverables that align with the deliverables in the Goal column?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 172, - "endIndex": 173, - "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" - } - } - }, - { - "startIndex": 172, - "endIndex": 173, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 173, - "endIndex": 280, - "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" - } - } - }, - { - "startIndex": 173, - "endIndex": 280, - "textRun": { - "content": "✅/❌ Does your strategy consider potential constraints of your sprint? (e.g., time available during 1-week)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 137, - "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" - } - } - }, - { - "endIndex": 137, - "textRun": { - "content": "✅/❌ Look back at the goal and roadblocks columns. Do you argue for why your strategies will overcome those roadblocks to meet your goal?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 137, - "endIndex": 138, - "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" - } - } - }, - { - "startIndex": 137, - "endIndex": 138, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 317, - "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" - } - } - }, - { - "startIndex": 138, - "endIndex": 317, - "textRun": { - "content": "✅/❌ Is your proposed strategy unique from or a sufficient advancement on previous unsuccessful approaches? In other words, could it still fail based on what you tried previously?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1439200, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_128", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Troubleshooting Your __________", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_129", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_126:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_130", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_131", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_131" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_132", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_133", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 43, - "textRun": { - "content": "Mysore Template: Planning for Status Update", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_134", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_135", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 349202.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 521275, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "What risks do you see in your project? What would you want to learn to address these risks?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Who’s there that can help me?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 100, - "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" - } - } - }, - { - "endIndex": 100, - "textRun": { - "content": "Where could you get help from them? Why/why not would status update be a good place for your risks?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 70, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "What is the minimal amount of my project they need to see to help me?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "What’s a status update plan that will help you address your risks? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 521275, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4273025, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "What are example status updates people have gotten a lot out of? Do I have a need like those?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.7176471, - "green": 0.7176471, - "blue": 0.7176471 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4273025, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_132:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_136", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_137", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_137" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_138", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_139", - "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": 18, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Conceptual Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 18, - "endIndex": 38, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 18, - "endIndex": 38, - "textRun": { - "content": "Conceptual Approach\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_138:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_140", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_141", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_141" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_142", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_143", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 3.048, - "scaleY": 0.1909, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 23, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Approach Tree [Part 1]\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p4_i0" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_144", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6683, - "scaleY": 0.3428, - "translateX": 51775, - "translateY": 2458550, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 55, - "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" - } - } - }, - { - "endIndex": 55, - "textRun": { - "content": "2. What is a class of problems researchers care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 55, - "endIndex": 56, - "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" - } - } - }, - { - "startIndex": 55, - "endIndex": 56, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_145", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6683, - "scaleY": 0.3428, - "translateX": 51775, - "translateY": 1144700, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "1.What is at issue in the field?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_146", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6683, - "scaleY": 0.3428, - "translateX": 51775, - "translateY": 3772400, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "2b. What are the desired outcomes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_147", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.772, - "scaleY": 0.3428, - "translateX": 2348875, - "translateY": 800125, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "3. What’s a general approach for addressing this class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 78, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 78, - "textRun": { - "content": "[FARTHER]\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 78, - "endIndex": 79, - "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" - } - } - }, - { - "startIndex": 78, - "endIndex": 79, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_148", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 2348875, - "translateY": 1841375, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "FARTHER APPROACH #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_149", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 3506875, - "translateY": 1834950, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_150", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 2348875, - "translateY": 2869775, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "FARTHER APPROACH #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_151", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 2348875, - "translateY": 3898175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "FARTHER APPROACH #3\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_152", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 3506875, - "translateY": 2869775, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_153", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 3506875, - "translateY": 3898175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #3\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_154", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.772, - "scaleY": 0.3428, - "translateX": 4664875, - "translateY": 800125, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "4. What’s a general approach for addressing this class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 77, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 77, - "textRun": { - "content": "[CLOSER]\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_155", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 4664875, - "translateY": 1841375, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "CLOSER APPROACH #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_156", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 5822875, - "translateY": 1834950, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_157", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 4664875, - "translateY": 2869775, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "CLOSER APPROACH #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_158", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 4664875, - "translateY": 3898175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "CLOSER APPROACH #3\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_159", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 5822875, - "translateY": 2869775, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_160", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 5822875, - "translateY": 3898175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #3\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_161", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6683, - "scaleY": 0.2128, - "translateX": 51775, - "translateY": 506200, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "Class of Problems & Desired Outcomes\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_162", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.544, - "scaleY": 0.098, - "translateX": 2348875, - "translateY": 506125, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Why Existing Approaches Fail\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_163", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6416, - "scaleY": 0.098, - "translateX": 7137700, - "translateY": 506200, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "New Understanding\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_164", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6416, - "scaleY": 0.6242, - "translateX": 7137700, - "translateY": 879375, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 38, - "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" - } - } - }, - { - "endIndex": 38, - "textRun": { - "content": "5a. What new understanding is needed?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gf266c01b2a_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6416, - "scaleY": 0.6242, - "translateX": 7137700, - "translateY": 3058650, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "5b. Your Research Question", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_142:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_166", - "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": "gcbd9fbfbdf_0_167", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_167" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_168", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_169", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 3.0579, - "scaleY": 0.1909, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 23, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Approach Tree [Part 2]\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p4_i0" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_170", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2357, - "scaleY": 0.3428, - "translateX": 73200, - "translateY": 1973150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "6b. What are relevant theories + principles it applies?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_171", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2357, - "scaleY": 0.3428, - "translateX": 73200, - "translateY": 902175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 38, - "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" - } - } - }, - { - "endIndex": 38, - "textRun": { - "content": "6a. What is your conceptual approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 38, - "endIndex": 39, - "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" - } - } - }, - { - "startIndex": 38, - "endIndex": 39, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_172", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2357, - "scaleY": 0.3428, - "translateX": 73200, - "translateY": 4115100, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 59, - "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" - } - } - }, - { - "endIndex": 58, - "textRun": { - "content": "6d. What’s the new conceptual understanding + implication?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 58, - "endIndex": 59, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_173", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.8306, - "scaleY": 0.3428, - "translateX": 4153275, - "translateY": 1017725, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "7. What’s the technical need for realizing the conceptual approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_174", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.4153, - "scaleY": 0.3428, - "translateX": 4153275, - "translateY": 2049340.63, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "EXISTING TECH APPROACH #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_175", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.4153, - "scaleY": 0.3428, - "translateX": 5399137.715, - "translateY": 2049340.63, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_176", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.4153, - "scaleY": 0.3428, - "translateX": 4153275, - "translateY": 3080956.2600000002, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "EXISTING TECH APPROACH #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_177", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.8306, - "scaleY": 0.3428, - "translateX": 4153275, - "translateY": 4109021.8800000004, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 53, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "Given these obstacles, what new technique is needed?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_178", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.4153, - "scaleY": 0.3428, - "translateX": 5399137.715, - "translateY": 3080956.2600000002, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_179", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.642, - "scaleY": 0.098, - "translateX": 73200, - "translateY": 529450, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Conceptual Approach\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_180", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.544, - "scaleY": 0.098, - "translateX": 4153275, - "translateY": 723725, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "Technical Approach\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_181", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2357, - "scaleY": 0.3428, - "translateX": 73200, - "translateY": 3044125, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 63, - "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" - } - } - }, - { - "endIndex": 63, - "textRun": { - "content": "6c. What’s your research argument for why this approach works?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 63, - "endIndex": 64, - "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" - } - } - }, - { - "startIndex": 63, - "endIndex": 64, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_182", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.6172, - "scaleY": 0.2226, - "translateX": 4151775, - "translateY": 55925, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "5b. Your Research Question\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_183", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7861, - "scaleY": 0.3428, - "translateX": 6645000.4275, - "translateY": 2049340.63, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 58, - "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" - } - } - }, - { - "endIndex": 58, - "textRun": { - "content": "7b. What are relevant technical ideas+methods it applies?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 58, - "endIndex": 59, - "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" - } - } - }, - { - "startIndex": 58, - "endIndex": 59, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_184", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7861, - "scaleY": 0.3428, - "translateX": 6645000.4275, - "translateY": 1017725, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "7a. What is your technical approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "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" - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_185", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7861, - "scaleY": 0.3428, - "translateX": 6645000.4275, - "translateY": 4109021.8800000004, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 70, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "7d. How does this technical approach realize the conceptual approach?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_186", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7861, - "scaleY": 0.3428, - "translateX": 6645000.4275, - "translateY": 3080956.2600000002, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 64, - "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" - } - } - }, - { - "endIndex": 64, - "textRun": { - "content": "7c. What’s your technical argument for why this approach works?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 64, - "endIndex": 65, - "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" - } - } - }, - { - "startIndex": 64, - "endIndex": 65, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_168:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_187", - "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": "gcbd9fbfbdf_0_188", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_188" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gf296502525_0_7", - "pageElements": [ - { - "objectId": "gf296502525_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 347827.5, - "unit": "EMU" - }, - "table": { - "rows": 5, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 265075, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Practical Problem Statement", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 16, - "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" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Interface/System Arguments\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Empirical Findings", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 19, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 265075, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1594600, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1594600, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 265075, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Class of Problems", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 17, - "endIndex": 18, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Conceptual Approach\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "Technical Approach\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Theoretical Findings", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 265075, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1434075, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1434075, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1236875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "✅/❌ Is it clear how your practical problem statement is an instance of the class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 95, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Is your class of problems sufficiently broad to include problems other than your practical problem?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 199, - "endIndex": 200, - "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" - } - } - }, - { - "startIndex": 199, - "endIndex": 200, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 200, - "endIndex": 354, - "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" - } - } - }, - { - "startIndex": 200, - "endIndex": 354, - "textRun": { - "content": "✅/❌ Is your class of problems appropriately scoped (not too broad), i.e., does your conceptual and technical approach solve *all* problems in this class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 85, - "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" - } - } - }, - { - "endIndex": 85, - "textRun": { - "content": "✅/❌ Is it clear how your design argument is an instance of your conceptual approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 181, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 181, - "textRun": { - "content": "✅/❌ Does your conceptual approach explain how it addresses the class of problems in a new way?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "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" - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 182, - "endIndex": 287, - "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" - } - } - }, - { - "startIndex": 182, - "endIndex": 287, - "textRun": { - "content": "✅/❌ Does your design argument explain how it overcomes obstacles that prior approaches do not or cannot?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "✅/❌ Is it clear how your interface/system argument is an instance of your technical approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 196, - "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" - } - } - }, - { - "startIndex": 95, - "endIndex": 196, - "textRun": { - "content": "✅/❌ Does your technical approach realize (i.e., make possible) the conceptual approach in a new way?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 196, - "endIndex": 197, - "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" - } - } - }, - { - "startIndex": 196, - "endIndex": 197, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 197, - "endIndex": 302, - "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" - } - } - }, - { - "startIndex": 197, - "endIndex": 302, - "textRun": { - "content": "✅/❌ Is it clear how your technical approach can be implemented to broadly address the class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 241, - "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" - } - } - }, - { - "endIndex": 241, - "textRun": { - "content": "✅/❌ Is it clear how your empirical findings imply your theoretical findings? That is, are they sufficient for showing that your conceptual/technical approach works on this problem, and suggest that it might, for the whole class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 241, - "endIndex": 242, - "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" - } - } - }, - { - "startIndex": 241, - "endIndex": 242, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 242, - "endIndex": 384, - "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" - } - } - }, - { - "startIndex": 242, - "endIndex": 384, - "textRun": { - "content": "✅/❌ Does your empirical findings clearly prove the effectiveness of your design/interface/system arguments for solving the practical problem?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 384, - "endIndex": 385, - "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" - } - } - }, - { - "startIndex": 384, - "endIndex": 385, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1236875, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 5, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 5, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 5, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gf296502525_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Mysore Template: 8-Pack", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gf296502525_0_10", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gf296502525_0_7:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gf296502525_0_11", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gf296502525_0_12", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gf296502525_0_12" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gf266c01b2a_0_8", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.2497, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 18, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Conceptual Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 18, - "endIndex": 54, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 18, - "endIndex": 54, - "textRun": { - "content": "Takeaways and Revised Understanding\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gf266c01b2a_0_8:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_10", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gf266c01b2a_0_11", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gf266c01b2a_0_11" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gf266c01b2a_0_12", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_14", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.8194, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 57, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "Mysore Template: Understanding your Conceptual Takeaways", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gf266c01b2a_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Evidence in Support of your Approach", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 37, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 37, - "endIndex": 236, - "textRun": { - "content": "In what ways did the conceptual or technical argument effectively support solving your practical problem? How have you established the usefulness of the conceptual approach on this practical problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 236, - "endIndex": 237, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 41, - "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" - } - } - }, - { - "endIndex": 40, - "textRun": { - "content": "Generalizing or Extending the Approaches", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 41, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 41, - "endIndex": 254, - "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" - } - } - }, - { - "startIndex": 41, - "endIndex": 253, - "textRun": { - "content": "How generalizable is the conceptual or technical approach? In what ways does your takeaways and findings inform questions one may have about how it can be used/extended to solve the class of problems of interest?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 254, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 10, - "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" - } - } - }, - { - "endIndex": 10, - "textRun": { - "content": "Obstacles\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 10, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 10, - "endIndex": 217, - "textRun": { - "content": "In what ways did you find the conceptual or technical arguments limiting? What new obstacles to realizing the concept are discovered in applying your conceptual/technical arguments on the practical problem?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Limitations of Testing\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 120, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 120, - "textRun": { - "content": "Which parts of your conceptual approach couldn’t actually be tested with the data you collected?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2554400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2554400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gf266c01b2a_0_15", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gf266c01b2a_0_12:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_16", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gf266c01b2a_0_17", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gf266c01b2a_0_17" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gf266c01b2a_0_18", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_19", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 3, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 38, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "New directions: Conceptual Approaches", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 38, - "endIndex": 154, - "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" - } - } - }, - { - "startIndex": 38, - "endIndex": 153, - "textRun": { - "content": "Based on the revised understanding, what new research questions/directions may you pursue on conceptual approaches?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 154, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "New directions: Technical Approaches", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 37, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 152, - "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" - } - } - }, - { - "startIndex": 37, - "endIndex": 151, - "textRun": { - "content": "Based on the revised understanding, what new research questions/directions may you pursue on technical approaches?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 152, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "New direction: Class of Problems\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 157, - "textRun": { - "content": "Based on the revised understanding, what new research questions/directions may you pursue on the class of problems studied?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2554400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2554400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 3044025, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2965800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 3044000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gf266c01b2a_0_20", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.8194, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 50, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Revised Conceptual Understanding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "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" - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gf266c01b2a_0_21", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gf266c01b2a_0_18:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_22", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gf266c01b2a_0_23", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gf266c01b2a_0_23" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - } - ], - "title": "Copy of New [NOT] Orchestration Scripting Environments Practical/Conceptual Research Canvas", - "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.8401999473571777, - "scaleY": 0.19089999794960022, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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", - "autofit": { - "autofitType": "TEXT_AUTOFIT", - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE" - } - } - }, - { - "objectId": "p1_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8401999473571777, - "scaleY": 1.1388000249862671, - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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", - "autofit": { - "autofitType": "TEXT_AUTOFIT", - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY" - } - } - }, - { - "objectId": "p1_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "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", - "autofit": { - "autofitType": "TEXT_AUTOFIT", - "fontScale": 1 - } - }, - "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": 0.25882354, - "green": 0.52156866, - "blue": 0.95686275 - } - }, - { - "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.8401999473571777, - "scaleY": 0.6841999888420105, - "translateX": 311708.349609375, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "CENTERED_TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p2_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8401999473571777, - "scaleY": 0.26420000195503235, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SUBTITLE", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p2_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.28060001134872437, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p3_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.19089999794960022, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p4_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8401999473571777, - "scaleY": 1.1388000249862671, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p4_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.19089999794960022, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p5_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.333299994468689, - "scaleY": 1.1388000249862671, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p5_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.333299994468689, - "scaleY": 1.1388000249862671, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.19089999794960022, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p6_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.93599998950958252, - "scaleY": 0.25189998745918274, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p7_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.93599998950958252, - "scaleY": 1.0598000288009644, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p7_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.1226000785827637, - "scaleY": 1.3636000156402588, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p8_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.5240000486373901, - "scaleY": 1.7144999504089355, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "p9_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.3483999967575073, - "scaleY": 0.49410000443458557, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p9_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.3483999967575073, - "scaleY": 0.41170001029968262, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SUBTITLE", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p9_i3", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2790000438690186, - "scaleY": 1.2316999435424805, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p9_i4", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.9996000528335571, - "scaleY": 0.20170000195503235, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p10_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.65450000762939453, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p11_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8401999473571777, - "scaleY": 0.43360000848770142, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p11_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SLIDE_NUMBER", - "parentObjectId": "p1_i2" - } - } - } - ], - "layoutProperties": { - "masterObjectId": "simple-light-2", - "name": "BLANK", - "displayName": "Blank" - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g110fcf6167b_6_181", - "pageType": "LAYOUT", - "pageElements": [ - { - "objectId": "g110fcf6167b_6_182", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.6289, - "scaleY": 0.3314, - "translateX": 628650, - "translateY": 273843.75, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "glyph": " ", - "bulletStyle": {} - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 8, - "glyph": " ", - "bulletStyle": {} - } - } - }, - { - "startIndex": 8, - "endIndex": 9, - "textRun": { - "content": "\n", - "style": {} - } - } - ], - "lists": { - "bodyPlaceholderListEntity": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": { - "0": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "1": { - "bulletStyle": {} - }, - "2": { - "bulletStyle": {} - }, - "3": { - "bulletStyle": {} - }, - "4": { - "bulletStyle": {} - }, - "5": { - "bulletStyle": {} - }, - "6": { - "bulletStyle": {} - }, - "7": { - "bulletStyle": {} - }, - "8": { - "bulletStyle": {} - } - } - } - } - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "MIDDLE", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "g110fcf6167b_6_183", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.6289, - "scaleY": 1.0878, - "translateX": 628650, - "translateY": 1369218.75, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 8, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 1, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 2, - "endIndex": 3, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 2, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 3, - "endIndex": 4, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 3, - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "startIndex": 3, - "endIndex": 4, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 4, - "endIndex": 5, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 4, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 5, - "endIndex": 6, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 5, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 5, - "endIndex": 6, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 6, - "endIndex": 7, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 6, - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "startIndex": 6, - "endIndex": 7, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 7, - "endIndex": 8, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 7, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 7, - "endIndex": 8, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 8, - "endIndex": 9, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 8, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 8, - "endIndex": 9, - "textRun": { - "content": "\n", - "style": {} - } - } - ], - "lists": { - "bodyPlaceholderListEntity": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": { - "0": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "1": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "2": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "3": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "4": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "5": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "6": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "7": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "8": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - } - } - } - } - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "TOP", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "g110fcf6167b_6_184", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6858, - "scaleY": 0.0913, - "translateX": 628650, - "translateY": 4767262.5, - "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": { - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "MIDDLE", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "placeholder": { - "type": "DATE_AND_TIME" - } - } - }, - { - "objectId": "g110fcf6167b_6_185", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.0287, - "scaleY": 0.0913, - "translateX": 3028950, - "translateY": 4767262.5, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "CENTER", - "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": { - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "MIDDLE", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "placeholder": { - "type": "FOOTER" - } - } - }, - { - "objectId": "g110fcf6167b_6_186", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6858, - "scaleY": 0.0913, - "translateX": 6457950, - "translateY": 4767262.5, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 2, - "paragraphMarker": { - "style": { - "alignment": "END", - "indentStart": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "endIndex": 1, - "autoText": { - "type": "SLIDE_NUMBER", - "content": "#", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "MIDDLE", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SLIDE_NUMBER", - "parentObjectId": "p1_i2" - } - } - } - ], - "layoutProperties": { - "masterObjectId": "simple-light-2", - "name": "OBJECT", - "displayName": "Title and Content" - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g110fcf6167b_6_187", - "pageType": "LAYOUT", - "pageElements": [ - { - "objectId": "g110fcf6167b_6_188", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.6289, - "scaleY": 0.3314, - "translateX": 628650, - "translateY": 273843.75, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "glyph": " ", - "bulletStyle": {} - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 8, - "glyph": " ", - "bulletStyle": {} - } - } - }, - { - "startIndex": 8, - "endIndex": 9, - "textRun": { - "content": "\n", - "style": {} - } - } - ], - "lists": { - "bodyPlaceholderListEntity": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": { - "0": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "1": { - "bulletStyle": {} - }, - "2": { - "bulletStyle": {} - }, - "3": { - "bulletStyle": {} - }, - "4": { - "bulletStyle": {} - }, - "5": { - "bulletStyle": {} - }, - "6": { - "bulletStyle": {} - }, - "7": { - "bulletStyle": {} - }, - "8": { - "bulletStyle": {} - } - } - } - } - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "MIDDLE", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "g110fcf6167b_6_189", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.6289, - "scaleY": 1.0878, - "translateX": 628650, - "translateY": 1369218.75, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 8, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 1, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 2, - "endIndex": 3, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 2, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 3, - "endIndex": 4, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 3, - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "startIndex": 3, - "endIndex": 4, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 4, - "endIndex": 5, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 4, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 5, - "endIndex": 6, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 5, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 5, - "endIndex": 6, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 6, - "endIndex": 7, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 6, - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "startIndex": 6, - "endIndex": 7, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 7, - "endIndex": 8, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 7, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 7, - "endIndex": 8, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 8, - "endIndex": 9, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 8, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 8, - "endIndex": 9, - "textRun": { - "content": "\n", - "style": {} - } - } - ], - "lists": { - "bodyPlaceholderListEntity": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": { - "0": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "1": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "2": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "3": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "4": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "5": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "6": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "7": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "8": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - } - } - } - } - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "TOP", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "g110fcf6167b_6_190", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6858, - "scaleY": 0.0913, - "translateX": 628650, - "translateY": 4767262.5, - "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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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": "MIDDLE", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "placeholder": { - "type": "DATE_AND_TIME" - } - } - }, - { - "objectId": "g110fcf6167b_6_191", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.0287, - "scaleY": 0.0913, - "translateX": 3028950, - "translateY": 4767262.5, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "CENTER", - "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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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": "MIDDLE", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "placeholder": { - "type": "FOOTER" - } - } - }, - { - "objectId": "g110fcf6167b_6_192", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6858, - "scaleY": 0.0913, - "translateX": 6457950, - "translateY": 4767262.5, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 2, - "paragraphMarker": { - "style": { - "alignment": "END", - "indentStart": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "endIndex": 1, - "autoText": { - "type": "SLIDE_NUMBER", - "content": "#", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "MIDDLE", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SLIDE_NUMBER", - "parentObjectId": "p1_i2" - } - } - } - ], - "layoutProperties": { - "masterObjectId": "simple-light-2", - "name": "OBJECT_1", - "displayName": "Title and Content 1" - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - } - ], - "locale": "en", - "revisionId": "4KXOeD4gTEhLWg", - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "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 - } - } - ] - } - } - } -} diff --git a/package.json b/package.json index 5668381..da67526 100644 --- a/package.json +++ b/package.json @@ -1,57 +1,56 @@ { - "private": true, - "engines": { - "node": ">18.x" - }, - "scripts": { - "dev": "next dev", - "build": "next build", - "start": "next start", - "lint": "next lint" - }, - "dependencies": { - "@chakra-ui/react": "^2.8.2", - "@dnd-kit/core": "^6.1.0", - "@dnd-kit/sortable": "^8.0.0", - "@dnd-kit/utilities": "^3.2.2", - "@emotion/react": "^11.11.3", - "@emotion/server": "^11.11.0", - "@emotion/styled": "^11.11.0", - "@mantine/carousel": "^7.5.2", - "@mantine/core": "^7.5.2", - "@mantine/hooks": "^7.5.2", - "@mantine/next": "^6.0.21", - "@vygruppen/spor-accordion-react": "^1.0.1", - "blockly": "^10.3.1", - "dotenv": "^16.4.4", - "embla-carousel-react": "^7.1.0", - "framer-motion": "^11.0.5", - "mongo": "^0.1.0", - "mongoose": "^8.1.2", - "next": "latest", - "p5": "^1.9.0", - "react": "18.2.0", - "react-beautiful-dnd": "^13.1.1", - "react-blockly": "^8.1.1", - "react-dom": "18.2.0", - "react-modal": "^3.16.1", - "react-sortable-hoc": "^2.0.0", - "reactstrap": "^9.2.2" - }, - "devDependencies": { - "@types/node": "20.11.17", - "@types/p5": "^1.7.6", - "@types/react": "18.2.55", - "@types/react-beautiful-dnd": "^13.1.8", - "@types/react-dom": "18.2.19", - "autoprefixer": "^10.4.17", - "eslint": "^8.56.0", - "eslint-config-next": "^14.1.0", - "eslint-config-prettier": "^9.1.0", - "postcss": "^8.4.35", - "prettier": "^3.2.5", - "tailwindcss": "^3.4.1", - "typescript": "5.3.3" - } + "private": true, + "engines": { + "node": ">18.x" + }, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "@chakra-ui/react": "^2.8.2", + "@dnd-kit/core": "^6.1.0", + "@dnd-kit/sortable": "^8.0.0", + "@dnd-kit/utilities": "^3.2.2", + "@emotion/react": "^11.11.3", + "@emotion/server": "^11.11.0", + "@emotion/styled": "^11.11.0", + "@mantine/carousel": "^6.0.21", + "@mantine/core": "^6.0.21", + "@mantine/hooks": "^6.0.21", + "@mantine/next": "^6.0.21", + "@vygruppen/spor-accordion-react": "^1.0.1", + "blockly": "^10.3.1", + "dotenv": "^16.4.4", + "embla-carousel-react": "^7.1.0", + "framer-motion": "^11.0.5", + "mongo": "^0.1.0", + "mongoose": "^8.1.2", + "next": "latest", + "p5": "^1.9.0", + "react": "18.2.0", + "react-beautiful-dnd": "^13.1.1", + "react-blockly": "^8.1.1", + "react-dom": "18.2.0", + "react-modal": "^3.16.1", + "react-sortable-hoc": "^2.0.0", + "reactstrap": "^9.2.2" + }, + "devDependencies": { + "@types/node": "20.11.17", + "@types/p5": "^1.7.6", + "@types/react": "18.2.55", + "@types/react-beautiful-dnd": "^13.1.8", + "@types/react-dom": "18.2.19", + "autoprefixer": "^10.4.17", + "eslint": "^8.56.0", + "eslint-config-next": "^14.1.0", + "eslint-config-prettier": "^9.1.0", + "postcss": "^8.4.35", + "prettier": "^3.2.5", + "tailwindcss": "^3.4.1", + "typescript": "5.3.3" } - \ No newline at end of file +} diff --git a/yarn.lock b/yarn.lock index cfaa5c5..31e5c3e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -46,7 +46,7 @@ chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.20.13", "@babel/runtime@^7.23.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": version "7.23.9" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.9.tgz#47791a15e4603bb5f905bc0753801cf21d6345f7" integrity sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw== @@ -1067,7 +1067,7 @@ dependencies: "@floating-ui/utils" "^0.2.1" -"@floating-ui/dom@^1.6.1": +"@floating-ui/dom@^1.2.1": version "1.6.3" resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.3.tgz#954e46c1dd3ad48e49db9ada7218b0985cee75ef" integrity sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw== @@ -1075,20 +1075,20 @@ "@floating-ui/core" "^1.0.0" "@floating-ui/utils" "^0.2.0" -"@floating-ui/react-dom@^2.0.1": - version "2.0.8" - resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.0.8.tgz#afc24f9756d1b433e1fe0d047c24bd4d9cefaa5d" - integrity sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw== +"@floating-ui/react-dom@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-1.3.0.tgz#4d35d416eb19811c2b0e9271100a6aa18c1579b3" + integrity sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g== dependencies: - "@floating-ui/dom" "^1.6.1" + "@floating-ui/dom" "^1.2.1" -"@floating-ui/react@^0.24.8": - version "0.24.8" - resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.24.8.tgz#e079e2836990be3fce9665ab509360a5447251a1" - integrity sha512-AuYeDoaR8jtUlUXtZ1IJ/6jtBkGnSpJXbGNzokBL87VDJ8opMq1Bgrc0szhK482ReQY6KZsMoZCVSb4xwalkBA== +"@floating-ui/react@^0.19.1": + version "0.19.2" + resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.19.2.tgz#c6e4d2097ed0dca665a7c042ddf9cdecc95e9412" + integrity sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w== dependencies: - "@floating-ui/react-dom" "^2.0.1" - aria-hidden "^1.2.3" + "@floating-ui/react-dom" "^1.3.0" + aria-hidden "^1.1.3" tabbable "^6.0.1" "@floating-ui/utils@^0.2.0", "@floating-ui/utils@^0.2.1": @@ -1159,27 +1159,29 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@mantine/carousel@^7.5.2": - version "7.5.3" - resolved "https://registry.yarnpkg.com/@mantine/carousel/-/carousel-7.5.3.tgz#b1431c4470b86c1ebc8564ebe1dcc041e05521db" - integrity sha512-rGB4tpYc+n2gTC0ijHP2jeMO3z5s29lY/LqtSq2uh8JnIXguV23QUR61twI1TkuvFNhyS4jJspruaEx2ErtrLg== +"@mantine/carousel@^6.0.21": + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/carousel/-/carousel-6.0.21.tgz#3e2a77e365014b314f90e8b474b350432c926640" + integrity sha512-cQAQ5RlVhSrYA8aez/euzs5nQKcGcwxVTS/gf46GEZ0gcDJXlymZPbc2OopH/WDczEaMWOF7wz8R9+uG1hYNCg== + dependencies: + "@mantine/utils" "6.0.21" -"@mantine/core@^7.5.2": - version "7.5.3" - resolved "https://registry.yarnpkg.com/@mantine/core/-/core-7.5.3.tgz#ac83faf5d8f1b02bb09fde79d07365f6c3e76e1a" - integrity sha512-Wvv6DJXI+GX9mmKG5HITTh/24sCZ0RoYQHdTHh0tOfGnEy+RleyhA82UjnMsp0n2NjfCISBwbiKgfya6b2iaFw== +"@mantine/core@^6.0.21": + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/core/-/core-6.0.21.tgz#6e3a1b8d0f6869518a644d5f5e3d55a5db7e1e51" + integrity sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg== dependencies: - "@floating-ui/react" "^0.24.8" - clsx "2.0.0" - react-number-format "^5.3.1" - react-remove-scroll "^2.5.7" - react-textarea-autosize "8.5.3" - type-fest "^3.13.1" + "@floating-ui/react" "^0.19.1" + "@mantine/styles" "6.0.21" + "@mantine/utils" "6.0.21" + "@radix-ui/react-scroll-area" "1.0.2" + react-remove-scroll "^2.5.5" + react-textarea-autosize "8.3.4" -"@mantine/hooks@^7.5.2": - version "7.5.3" - resolved "https://registry.yarnpkg.com/@mantine/hooks/-/hooks-7.5.3.tgz#34168712075ee40ff7353c840420d4568b0dd54e" - integrity sha512-mFI448mAs12v8FrgSVhytqlhTVrEjIfd/PqPEfwJu5YcZIq4YZdqpzJIUbANnRrFSvmoQpDb1PssdKx7Ds35hw== +"@mantine/hooks@^6.0.21": + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/hooks/-/hooks-6.0.21.tgz#bc009d8380ad18455b90f3ddaf484de16a13da95" + integrity sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew== "@mantine/next@^6.0.21": version "6.0.21" @@ -1205,6 +1207,11 @@ clsx "1.1.1" csstype "3.0.9" +"@mantine/utils@6.0.21": + version "6.0.21" + resolved "https://registry.yarnpkg.com/@mantine/utils/-/utils-6.0.21.tgz#6185506e91cba3e308aaa8ea9ababc8e767995d6" + integrity sha512-33RVDRop5jiWFao3HKd3Yp7A9mEq4HAJxJPTuYm1NkdqX6aTKOQK7wT8v8itVodBp+sb4cJK6ZVdD1UurK/txQ== + "@mongodb-js/saslprep@^1.1.0": version "1.1.4" resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.1.4.tgz#24ec1c4915a65f5c506bb88c081731450d91bb1c" @@ -1300,6 +1307,96 @@ resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== +"@radix-ui/number@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@radix-ui/number/-/number-1.0.0.tgz#4c536161d0de750b3f5d55860fc3de46264f897b" + integrity sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/primitive@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.0.tgz#e1d8ef30b10ea10e69c76e896f608d9276352253" + integrity sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-compose-refs@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz#37595b1f16ec7f228d698590e78eeed18ff218ae" + integrity sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-context@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.0.tgz#f38e30c5859a9fb5e9aa9a9da452ee3ed9e0aee0" + integrity sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-direction@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.0.0.tgz#a2e0b552352459ecf96342c79949dd833c1e6e45" + integrity sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-presence@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.0.0.tgz#814fe46df11f9a468808a6010e3f3ca7e0b2e84a" + integrity sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "1.0.0" + "@radix-ui/react-use-layout-effect" "1.0.0" + +"@radix-ui/react-primitive@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz#c1ebcce283dd2f02e4fbefdaa49d1cb13dbc990a" + integrity sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-slot" "1.0.1" + +"@radix-ui/react-scroll-area@1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz#26c906d351b56835c0301126b24574c9e9c7b93b" + integrity sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/number" "1.0.0" + "@radix-ui/primitive" "1.0.0" + "@radix-ui/react-compose-refs" "1.0.0" + "@radix-ui/react-context" "1.0.0" + "@radix-ui/react-direction" "1.0.0" + "@radix-ui/react-presence" "1.0.0" + "@radix-ui/react-primitive" "1.0.1" + "@radix-ui/react-use-callback-ref" "1.0.0" + "@radix-ui/react-use-layout-effect" "1.0.0" + +"@radix-ui/react-slot@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.1.tgz#e7868c669c974d649070e9ecbec0b367ee0b4d81" + integrity sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "1.0.0" + +"@radix-ui/react-use-callback-ref@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz#9e7b8b6b4946fe3cbe8f748c82a2cce54e7b6a90" + integrity sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-use-layout-effect@1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz#2fc19e97223a81de64cd3ba1dc42ceffd82374dc" + integrity sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@rushstack/eslint-patch@^1.3.3": version "1.7.2" resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz#2d4260033e199b3032a08b41348ac10de21c47e9" @@ -1580,7 +1677,7 @@ argparse@^2.0.1: resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -aria-hidden@^1.2.3: +aria-hidden@^1.1.3, aria-hidden@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.3.tgz#14aeb7fb692bbb72d69bebfa47279c1fd725e954" integrity sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ== @@ -1881,11 +1978,6 @@ clsx@1.1.1: resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== -clsx@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.0.0.tgz#12658f3fd98fafe62075595a5c30e43d18f3d00b" - integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== - color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -3977,13 +4069,6 @@ react-modal@^3.16.1: react-lifecycles-compat "^3.0.0" warning "^4.0.3" -react-number-format@^5.3.1: - version "5.3.3" - resolved "https://registry.yarnpkg.com/react-number-format/-/react-number-format-5.3.3.tgz#5e2c47769533f7bcbaa222d367f3bcf3263be602" - integrity sha512-maGHWmOvwYzyeRIpL0YC6drWqYaX6iFqjisdJXpZ+HzEtSEJsL6nqw4azTpF5Sm6SAvwUeAr7JY924Ebqq8EdA== - dependencies: - prop-types "^15.7.2" - react-popper@^2.2.4: version "2.3.0" resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.3.0.tgz#17891c620e1320dce318bad9fede46a5f71c70ba" @@ -4017,7 +4102,7 @@ react-remove-scroll-bar@^2.3.4: react-style-singleton "^2.2.1" tslib "^2.0.0" -react-remove-scroll@^2.5.6, react-remove-scroll@^2.5.7: +react-remove-scroll@^2.5.5, react-remove-scroll@^2.5.6: version "2.5.7" resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz#15a1fd038e8497f65a695bf26a4a57970cac1ccb" integrity sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA== @@ -4046,12 +4131,12 @@ react-style-singleton@^2.2.1: invariant "^2.2.4" tslib "^2.0.0" -react-textarea-autosize@8.5.3: - version "8.5.3" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz#d1e9fe760178413891484847d3378706052dd409" - integrity sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ== +react-textarea-autosize@8.3.4: + version "8.3.4" + resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz#270a343de7ad350534141b02c9cb78903e553524" + integrity sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ== dependencies: - "@babel/runtime" "^7.20.13" + "@babel/runtime" "^7.10.2" use-composed-ref "^1.3.0" use-latest "^1.2.1" @@ -4350,6 +4435,7 @@ streamsearch@^1.1.0: integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== "string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0: + name string-width-cjs version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -4659,11 +4745,6 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== -type-fest@^3.13.1: - version "3.13.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706" - integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== - typed-array-buffer@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" From 405a032555ae8e53d3475dae266f23b5ef5e9aba Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 11 Mar 2024 19:28:21 -0500 Subject: [PATCH 071/111] deployment fixes --- components/diagnosis/Signal.tsx | 3 +- lib/ostest/response.json | 236882 +++++++++++++++++++++++++++++ lib/populateContext.ts | 14 +- 3 files changed, 236892 insertions(+), 7 deletions(-) create mode 100644 lib/ostest/response.json diff --git a/components/diagnosis/Signal.tsx b/components/diagnosis/Signal.tsx index 69741fc..7f5051b 100644 --- a/components/diagnosis/Signal.tsx +++ b/components/diagnosis/Signal.tsx @@ -14,7 +14,8 @@ const Signal: React.FC = ({ content, title, project}) => { return (

          Signal Debrief

          -

          Your detector for {title} has been triggered for {project}. {content}.

          +

          What issue would you like to talk about during SIG today?

          +
          ); }; diff --git a/lib/ostest/response.json b/lib/ostest/response.json new file mode 100644 index 0000000..40a9035 --- /dev/null +++ b/lib/ostest/response.json @@ -0,0 +1,236882 @@ +{ + "presentationId": "1mksfTUtY-9ctogzuo_PPZQBMdt2K6F7DV57BeIBPjX8", + "pageSize": { + "width": { + "magnitude": 9144000, + "unit": "EMU" + }, + "height": { + "magnitude": 5143500, + "unit": "EMU" + } + }, + "slides": [ + { + "objectId": "gcbd9fbfbdf_0_285", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_286", + "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": 5, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "DTR \n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 5, + "endIndex": 48, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 5, + "endIndex": 47, + "textRun": { + "content": "Practical and Conceptual Research Canvases", + "style": { + "bold": true + } + } + }, + { + "startIndex": 47, + "endIndex": 48, + "textRun": { + "content": "\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 0.9 + } + }, + "placeholder": { + "type": "CENTERED_TITLE", + "parentObjectId": "p2_i0" + } + } + }, + { + "objectId": "g1d5b9d33aa0_0_4", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.8402, + "scaleY": 0.2642, + "translateX": 311700, + "translateY": 2797175, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 37, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 37, + "textRun": { + "content": "Orchestration Scripting Environments\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "SUBTITLE", + "parentObjectId": "p2_i1" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p2", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_285:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_287", + "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": "gcbd9fbfbdf_0_288", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_288" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_334", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_335", + "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": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 38, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 37, + "textRun": { + "content": "Design Argumentation", + "style": {} + } + }, + { + "startIndex": 37, + "endIndex": 38, + "textRun": { + "content": "\n", + "style": { + "italic": true, + "fontSize": { + "magnitude": 30, + "unit": "PT" + } + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_334:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_336", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_337", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_337" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g2117e6dac59_1_46", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_47", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 517800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 13, + "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" + } + } + }, + { + "endIndex": 12, + "textRun": { + "content": "User classes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 12, + "endIndex": 13, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 71, + "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" + } + } + }, + { + "startIndex": 13, + "endIndex": 70, + "textRun": { + "content": "Who are your users? At a high-level, what are they doing?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 70, + "endIndex": 71, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 23, + "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" + } + } + }, + { + "endIndex": 22, + "textRun": { + "content": "Users’ needs and goals", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 23, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 84, + "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" + } + } + }, + { + "startIndex": 23, + "endIndex": 83, + "textRun": { + "content": "What are the high-level needs and goals for each user class?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 83, + "endIndex": 84, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Current solutions\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 126, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 125, + "textRun": { + "content": "What existing solutions do users have to achieve their goals? (note: these need not be technical solutions)", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 125, + "endIndex": 126, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 83, + "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" + } + } + }, + { + "endIndex": 39, + "textRun": { + "content": "Users’ obstacles to meeting their goals", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 39, + "endIndex": 40, + "textRun": { + "content": "\u000b", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 40, + "endIndex": 82, + "textRun": { + "content": "Why are users not able to meet their goal?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 82, + "endIndex": 83, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Problem statement\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 138, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 137, + "textRun": { + "content": "Briefly state the problems that your project will aim to solve (but not a solution yet!), using your previous responses", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 137, + "endIndex": 138, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 517800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2785400, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 13, + "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" + } + } + }, + { + "endIndex": 11, + "textRun": { + "content": "User class:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 11, + "endIndex": 13, + "textRun": { + "content": " \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 365, + "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" + } + } + }, + { + "startIndex": 13, + "endIndex": 365, + "textRun": { + "content": "Mentors and mentees in networked work environments working to solve complex, ill-structured problems that have vaguely structured goals and constraints, and often multiple solutions. Working on these problems involves continually planning and re-planning around changing needs and constraints, often soliciting support from others in the organization.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 365, + "endIndex": 366, + "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" + } + } + }, + { + "startIndex": 365, + "endIndex": 366, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 366, + "endIndex": 389, + "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" + } + } + }, + { + "startIndex": 366, + "endIndex": 389, + "textRun": { + "content": "User Characteristics: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 389, + "endIndex": 586, + "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" + } + } + }, + { + "startIndex": 389, + "endIndex": 586, + "textRun": { + "content": "Mentors possess expertise in the organization’s area of work, various resources in the organization, effective work practices, as well as addressing problems that commonly arise in the workspace. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 44, + "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" + } + } + }, + { + "endIndex": 44, + "textRun": { + "content": "Mentors want to utilize their expertise to:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 44, + "endIndex": 83, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.pybpe9m23two", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 44, + "endIndex": 83, + "textRun": { + "content": "Know when their mentees are struggling\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 83, + "endIndex": 127, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.pybpe9m23two", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 83, + "endIndex": 127, + "textRun": { + "content": "Understand why their mentees are struggling\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 127, + "endIndex": 213, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.pybpe9m23two", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 127, + "endIndex": 213, + "textRun": { + "content": "Provide tailored strategy to help their mentees overcome what they’re struggling with\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 213, + "endIndex": 296, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.pybpe9m23two", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 213, + "endIndex": 296, + "textRun": { + "content": "Help them become better learners without spending an overwhelming amount of time. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 296, + "endIndex": 297, + "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" + } + } + }, + { + "startIndex": 296, + "endIndex": 297, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 297, + "endIndex": 512, + "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" + } + } + }, + { + "startIndex": 297, + "endIndex": 512, + "textRun": { + "content": "When tackling complex tasks, mentees often encounter problems that require support from others because they do not have the resources or skills to address the work needs themselves. When this happens, they want to:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 512, + "endIndex": 621, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.z71lbhkwuvo3", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 512, + "endIndex": 621, + "textRun": { + "content": "Utilize the resources in their work network such as venues, people, and tools to solve their problem at hand\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 621, + "endIndex": 777, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.z71lbhkwuvo3", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 621, + "endIndex": 777, + "textRun": { + "content": "Learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 777, + "endIndex": 833, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.z71lbhkwuvo3", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 777, + "endIndex": 833, + "textRun": { + "content": "Do so in a way which is more sustainable and enjoyable.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 833, + "endIndex": 834, + "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" + } + } + }, + { + "startIndex": 833, + "endIndex": 834, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 834, + "endIndex": 835, + "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" + } + } + }, + { + "startIndex": 834, + "endIndex": 835, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.pybpe9m23two": { + "listId": "kix.pybpe9m23two", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.z71lbhkwuvo3": { + "listId": "kix.z71lbhkwuvo3", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 264, + "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" + } + } + }, + { + "endIndex": 2, + "textRun": { + "content": "1.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2, + "endIndex": 3, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 3, + "endIndex": 31, + "textRun": { + "content": "Online/offline communication", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 264, + "textRun": { + "content": ": mentor contacts mentees through professional messaging platforms such as Slack, email, or meet with mentees in person to discuss their struggles. Mentees can also contact mentors to ask questions and get help when they are stuck. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 264, + "endIndex": 265, + "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" + } + } + }, + { + "startIndex": 264, + "endIndex": 265, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 265, + "endIndex": 293, + "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" + } + } + }, + { + "startIndex": 265, + "endIndex": 267, + "textRun": { + "content": "2.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 267, + "endIndex": 268, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 268, + "endIndex": 274, + "textRun": { + "content": "Mentor", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 274, + "endIndex": 275, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 275, + "endIndex": 291, + "textRun": { + "content": "Manually Monitor", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 291, + "endIndex": 293, + "textRun": { + "content": ":\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 293, + "endIndex": 435, + "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" + } + } + }, + { + "startIndex": 293, + "endIndex": 435, + "textRun": { + "content": "With workspaces becoming increasingly digitized, mentor can manually check resources and notify students when they see ineffective strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 435, + "endIndex": 436, + "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" + } + } + }, + { + "startIndex": 435, + "endIndex": 436, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 436, + "endIndex": 467, + "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" + } + } + }, + { + "startIndex": 436, + "endIndex": 438, + "textRun": { + "content": "3.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 438, + "endIndex": 439, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 439, + "endIndex": 465, + "textRun": { + "content": "Workspace automation tools", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 465, + "endIndex": 467, + "textRun": { + "content": ":\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 467, + "endIndex": 586, + "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" + } + } + }, + { + "startIndex": 467, + "endIndex": 586, + "textRun": { + "content": "Mentor can use workspace automation tools such as Slack and Zapier to detect work needs and facilitate work processes \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 586, + "endIndex": 587, + "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" + } + } + }, + { + "startIndex": 586, + "endIndex": 587, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 587, + "endIndex": 613, + "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" + } + } + }, + { + "startIndex": 587, + "endIndex": 589, + "textRun": { + "content": "4.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 0.6 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 589, + "endIndex": 590, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 590, + "endIndex": 613, + "textRun": { + "content": "Orchestration Scripts:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 613, + "endIndex": 728, + "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" + } + } + }, + { + "startIndex": 613, + "endIndex": 728, + "textRun": { + "content": "Mentors can use the OS language to write scripts that surface support strategies at appropriate times and settings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 728, + "endIndex": 729, + "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" + } + } + }, + { + "startIndex": 728, + "endIndex": 729, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 729, + "endIndex": 730, + "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" + } + } + }, + { + "startIndex": 729, + "endIndex": 730, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.j2f6lbesv3dp": { + "listId": "kix.j2f6lbesv3dp", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.lrf6l3cv5yu7": { + "listId": "kix.lrf6l3cv5yu7", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 2, + "textRun": { + "content": "1.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2, + "endIndex": 27, + "textRun": { + "content": " Mentor Contact Mentee: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 157, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 157, + "textRun": { + "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 157, + "endIndex": 180, + "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" + } + } + }, + { + "startIndex": 157, + "endIndex": 180, + "textRun": { + "content": "Mentee contact Mentor:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 180, + "endIndex": 440, + "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" + } + } + }, + { + "startIndex": 180, + "endIndex": 440, + "textRun": { + "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 440, + "endIndex": 441, + "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" + } + } + }, + { + "startIndex": 440, + "endIndex": 441, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 441, + "endIndex": 506, + "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" + } + } + }, + { + "startIndex": 441, + "endIndex": 443, + "textRun": { + "content": "2.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 443, + "endIndex": 506, + "textRun": { + "content": " Time-consuming and not scalable as organization grows in size\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 506, + "endIndex": 507, + "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" + } + } + }, + { + "startIndex": 506, + "endIndex": 507, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 507, + "endIndex": 702, + "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" + } + } + }, + { + "startIndex": 507, + "endIndex": 509, + "textRun": { + "content": "3.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 509, + "endIndex": 702, + "textRun": { + "content": " Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 702, + "endIndex": 1380, + "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" + } + } + }, + { + "startIndex": 702, + "endIndex": 874, + "textRun": { + "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So, ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 874, + "endIndex": 936, + "textRun": { + "content": "mentors tend to provide specific problem-solving strategies (c", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 936, + "endIndex": 955, + "textRun": { + "content": "ognitive strategies", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 955, + "endIndex": 968, + "textRun": { + "content": ") instead of ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 968, + "endIndex": 992, + "textRun": { + "content": "metacognitive strategies", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 992, + "endIndex": 1072, + "textRun": { + "content": " that ensure the problem is solved in ways that promote mentee’s personal growth", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 1072, + "endIndex": 1380, + "textRun": { + "content": ". This is problematic because while the short-term goal of completing a specific task has been met, the underlying reason of why mentees were struggling with the task has been overlooked. In the long term, this underlying cause of struggling will likely cause many other problems for the mentor and mentees.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1380, + "endIndex": 1381, + "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" + } + } + }, + { + "startIndex": 1380, + "endIndex": 1381, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1381, + "endIndex": 1954, + "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" + } + } + }, + { + "startIndex": 1381, + "endIndex": 1383, + "textRun": { + "content": "4.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 0.6 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1383, + "endIndex": 1384, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1384, + "endIndex": 1405, + "textRun": { + "content": "Expression Challenge:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 1405, + "endIndex": 1770, + "textRun": { + "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1770, + "endIndex": 1897, + "textRun": { + "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 1897, + "endIndex": 1954, + "textRun": { + "content": " available through mentees' interaction with resources. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1954, + "endIndex": 1955, + "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" + } + } + }, + { + "startIndex": 1954, + "endIndex": 1955, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1955, + "endIndex": 2251, + "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" + } + } + }, + { + "startIndex": 1955, + "endIndex": 1961, + "textRun": { + "content": "Also, ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1961, + "endIndex": 2028, + "textRun": { + "content": "Mentors often find it difficult to put themselves in mentee’s shoes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 2028, + "endIndex": 2251, + "textRun": { + "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.7w4lrivrcuw2": { + "listId": "kix.7w4lrivrcuw2", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 877, + "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" + } + } + }, + { + "endIndex": 877, + "textRun": { + "content": "Mentors want to utilize their expertise to help mentees achieve personal growth while tackling complex tasks in a networked workspace by understanding when and why mentees are struggling and providing tailored strategies. Mentors currently use tools like online/in person communication, and workspace automation tools to support their mentoring practice. However, these tools are either time-consuming, not scalable, or promotes task-specific cognitive strategies that have limited long-term benefits for the mentees. While the OS language allows mentors to surface support strategies at appropriate times and settings, 1) it’s still hard for them to know why mentees are struggling because mentors often find it difficult to put themselves in mentee’s shoe, and 2) they lack the tools to translate their high level understanding of work strategies to machine representations.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.7w4lrivrcuw2": { + "listId": "kix.7w4lrivrcuw2", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2785400, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1481050, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 53, + "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" + } + } + }, + { + "endIndex": 53, + "textRun": { + "content": "✅/❌ Have you clearly distinguished the user classes?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 53, + "endIndex": 54, + "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" + } + } + }, + { + "startIndex": 53, + "endIndex": 54, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 54, + "endIndex": 118, + "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" + } + } + }, + { + "startIndex": 54, + "endIndex": 118, + "textRun": { + "content": "✅/❌ Do you state what your users are doing for each user class?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 118, + "endIndex": 119, + "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" + } + } + }, + { + "startIndex": 118, + "endIndex": 119, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 119, + "endIndex": 183, + "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" + } + } + }, + { + "startIndex": 119, + "endIndex": 183, + "textRun": { + "content": "✅/❌ Do you state the major characteristics for each user class?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 183, + "endIndex": 184, + "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" + } + } + }, + { + "startIndex": 183, + "endIndex": 184, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 184, + "endIndex": 237, + "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" + } + } + }, + { + "startIndex": 184, + "endIndex": 237, + "textRun": { + "content": "✅/❌ Have you generated personas for each user class?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "For each user class:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 125, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 125, + "textRun": { + "content": "✅/❌ Are these goals things that your actual users want to do (and not things you think they should do)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 125, + "endIndex": 126, + "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" + } + } + }, + { + "startIndex": 125, + "endIndex": 126, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 126, + "endIndex": 188, + "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" + } + } + }, + { + "startIndex": 126, + "endIndex": 188, + "textRun": { + "content": "✅/❌ Do you state why these goals are important to your users?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 188, + "endIndex": 189, + "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" + } + } + }, + { + "startIndex": 188, + "endIndex": 189, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 189, + "endIndex": 275, + "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" + } + } + }, + { + "startIndex": 189, + "endIndex": 275, + "textRun": { + "content": "✅/❌ Do you have evidence from your interviews or observations to support these goals?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "For each existing solution:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 122, + "textRun": { + "content": "✅/❌ Do you state how the current solution works, and how it is used to meet the users’ needs?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "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" + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 123, + "endIndex": 217, + "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" + } + } + }, + { + "startIndex": 123, + "endIndex": 217, + "textRun": { + "content": "✅/❌ Do you state what users think works well about the solution? What doesn’t work well? Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "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" + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 218, + "endIndex": 391, + "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" + } + } + }, + { + "startIndex": 218, + "endIndex": 313, + "textRun": { + "content": "✅/❌ Do you state why is it bad that current solution doesn’t work at all or isn’t good enough? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 313, + "endIndex": 391, + "textRun": { + "content": "(hint: really try to empathize with your users to understand their struggles)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "For each user class:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 98, + "textRun": { + "content": "✅/❌ Have you mapped out your user’s journey to understand their pain points?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 98, + "endIndex": 99, + "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" + } + } + }, + { + "startIndex": 98, + "endIndex": 99, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 99, + "endIndex": 158, + "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" + } + } + }, + { + "startIndex": 99, + "endIndex": 158, + "textRun": { + "content": "✅/❌ Do you understand why they are having these struggles?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 158, + "endIndex": 159, + "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" + } + } + }, + { + "startIndex": 158, + "endIndex": 159, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 159, + "endIndex": 242, + "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" + } + } + }, + { + "startIndex": 159, + "endIndex": 242, + "textRun": { + "content": "✅/❌ Do you understand why these obstacles are problematic or painful for the user?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 28, + "textRun": { + "content": "For each problem statement:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 98, + "textRun": { + "content": "✅/❌ Does your problem statement address who the users/characters are?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 98, + "endIndex": 99, + "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" + } + } + }, + { + "startIndex": 98, + "endIndex": 99, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 99, + "endIndex": 202, + "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" + } + } + }, + { + "startIndex": 99, + "endIndex": 202, + "textRun": { + "content": "✅/❌ Does your problem statement truly capture the core tension between the users’ needs and obstacles?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "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" + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 203, + "endIndex": 313, + "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" + } + } + }, + { + "startIndex": 203, + "endIndex": 313, + "textRun": { + "content": "✅/❌ Is your problem statement in the form, “User wants to do X, but can’t because Y, which is bad because Z”?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1481050, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g2117e6dac59_1_48", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 41, + "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" + } + } + }, + { + "endIndex": 40, + "textRun": { + "content": "Mysore Template: Problem Statement {New}", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 40, + "endIndex": 41, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g2117e6dac59_1_49", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 16, + "textRun": { + "content": "[Grace & Jordan]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 16, + "endIndex": 17, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g2117e6dac59_1_46:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_50", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g2117e6dac59_1_51", + "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": 29, + "paragraphMarker": { + "style": { + "indentStart": { + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "A is an obstacle (good job!)\n", + "style": {} + } + }, + { + "startIndex": 29, + "endIndex": 164, + "paragraphMarker": { + "style": { + "indentStart": { + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 29, + "endIndex": 82, + "textRun": { + "content": "I would rephrase b-3 to emphasize on the complexity, ", + "style": {} + } + }, + { + "startIndex": 82, + "endIndex": 103, + "textRun": { + "content": "which mentors/mentees", + "style": { + "underline": true + } + } + }, + { + "startIndex": 103, + "endIndex": 164, + "textRun": { + "content": " (especially mentees) do know have the bandwidth to process.\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g2117e6dac59_1_51" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_14", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_15", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 406900, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Desired User Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 79, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 78, + "textRun": { + "content": "What should users do? What should happen when they do it?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 78, + "endIndex": 79, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Obstacles to user outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 113, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 112, + "textRun": { + "content": "Where do existing solutions go wrong? Why can the users currently not meet their goal?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 112, + "endIndex": 113, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 22, + "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" + } + } + }, + { + "endIndex": 22, + "textRun": { + "content": "Design Characteristic\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 70, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 70, + "textRun": { + "content": "What is the core characteristic of your design?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 25, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Argument for your design\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 143, + "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" + } + } + }, + { + "startIndex": 25, + "endIndex": 143, + "textRun": { + "content": "Why would your design work? In other words, why would your characteristic overcome the obstacle to reach the outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 406900, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2892100, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 164, + "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" + } + } + }, + { + "endIndex": 164, + "textRun": { + "content": "A Mentors should be able to express their strategies into computer-executable scripts (OS scripts) to surface support strategies at appropriate times and settings.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "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" + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 165, + "endIndex": 318, + "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" + } + } + }, + { + "startIndex": 165, + "endIndex": 318, + "textRun": { + "content": "B Mentors should strive to gain an in depth understanding of what mentees are struggling with, why they are struggling with it, and how they are working\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 318, + "endIndex": 319, + "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" + } + } + }, + { + "startIndex": 318, + "endIndex": 319, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 319, + "endIndex": 530, + "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" + } + } + }, + { + "startIndex": 319, + "endIndex": 530, + "textRun": { + "content": "C Given they can do B, mentors should help their mentees learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.z71lbhkwuvo3": { + "listId": "kix.z71lbhkwuvo3", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 34, + "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" + } + } + }, + { + "endIndex": 3, + "textRun": { + "content": "1. ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 3, + "endIndex": 31, + "textRun": { + "content": "Online/offline communication", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 34, + "textRun": { + "content": ": \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 58, + "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" + } + } + }, + { + "startIndex": 34, + "endIndex": 58, + "textRun": { + "content": "Mentor Contact Mentee: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 58, + "endIndex": 188, + "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" + } + } + }, + { + "startIndex": 58, + "endIndex": 188, + "textRun": { + "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 188, + "endIndex": 211, + "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" + } + } + }, + { + "startIndex": 188, + "endIndex": 211, + "textRun": { + "content": "Mentee contact Mentor:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 211, + "endIndex": 471, + "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" + } + } + }, + { + "startIndex": 211, + "endIndex": 471, + "textRun": { + "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 471, + "endIndex": 509, + "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" + } + } + }, + { + "startIndex": 471, + "endIndex": 509, + "textRun": { + "content": "-> can’t surface problems effectively\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 509, + "endIndex": 510, + "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" + } + } + }, + { + "startIndex": 509, + "endIndex": 510, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 510, + "endIndex": 538, + "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" + } + } + }, + { + "startIndex": 510, + "endIndex": 513, + "textRun": { + "content": "2. ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 513, + "endIndex": 538, + "textRun": { + "content": "Mentor Manually Monitor:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 538, + "endIndex": 603, + "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" + } + } + }, + { + "startIndex": 538, + "endIndex": 603, + "textRun": { + "content": "-> Time-consuming and not scalable as organization grows in size\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 603, + "endIndex": 604, + "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" + } + } + }, + { + "startIndex": 603, + "endIndex": 604, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 604, + "endIndex": 635, + "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" + } + } + }, + { + "startIndex": 604, + "endIndex": 607, + "textRun": { + "content": "3. ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 607, + "endIndex": 634, + "textRun": { + "content": "Workspace automation tools:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 634, + "endIndex": 635, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 635, + "endIndex": 827, + "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" + } + } + }, + { + "startIndex": 635, + "endIndex": 827, + "textRun": { + "content": "Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 827, + "endIndex": 1203, + "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" + } + } + }, + { + "startIndex": 827, + "endIndex": 998, + "textRun": { + "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So,", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 998, + "endIndex": 1001, + "textRun": { + "content": " ->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1001, + "endIndex": 1002, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1002, + "endIndex": 1064, + "textRun": { + "content": "mentors tend to provide specific problem-solving strategies (c", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1064, + "endIndex": 1083, + "textRun": { + "content": "ognitive strategies", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1083, + "endIndex": 1096, + "textRun": { + "content": ") instead of ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1096, + "endIndex": 1120, + "textRun": { + "content": "metacognitive strategies", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1120, + "endIndex": 1203, + "textRun": { + "content": " that ensure the problem is solved in ways that promote mentee’s personal growth. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1203, + "endIndex": 1204, + "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" + } + } + }, + { + "startIndex": 1203, + "endIndex": 1204, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1204, + "endIndex": 1220, + "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" + } + } + }, + { + "startIndex": 1204, + "endIndex": 1206, + "textRun": { + "content": "4.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1206, + "endIndex": 1219, + "textRun": { + "content": " OS Language:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 1219, + "endIndex": 1220, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1220, + "endIndex": 1793, + "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" + } + } + }, + { + "startIndex": 1220, + "endIndex": 1240, + "textRun": { + "content": "Expression Challenge", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1240, + "endIndex": 1241, + "textRun": { + "content": ":", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 1241, + "endIndex": 1606, + "textRun": { + "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1606, + "endIndex": 1609, + "textRun": { + "content": "-> ", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1609, + "endIndex": 1736, + "textRun": { + "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1736, + "endIndex": 1793, + "textRun": { + "content": " available through mentees' interaction with resources. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1793, + "endIndex": 1794, + "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" + } + } + }, + { + "startIndex": 1793, + "endIndex": 1794, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1794, + "endIndex": 2093, + "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" + } + } + }, + { + "startIndex": 1794, + "endIndex": 1800, + "textRun": { + "content": "Also, ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1800, + "endIndex": 1801, + "textRun": { + "content": "-", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1801, + "endIndex": 1803, + "textRun": { + "content": "> ", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1803, + "endIndex": 1870, + "textRun": { + "content": "mentors often find it difficult to put themselves in mentee’s shoes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": true, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1870, + "endIndex": 2093, + "textRun": { + "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2093, + "endIndex": 2094, + "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" + } + } + }, + { + "startIndex": 2093, + "endIndex": 2094, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2094, + "endIndex": 2108, + "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" + } + } + }, + { + "startIndex": 2094, + "endIndex": 2108, + "textRun": { + "content": "5/31 Sprint 5\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2108, + "endIndex": 2226, + "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" + } + } + }, + { + "startIndex": 2108, + "endIndex": 2226, + "textRun": { + "content": "What is a VERY successful root cause analysis? = deep enough root cause to prevent similar issue from happening again\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 2226, + "endIndex": 2499, + "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" + } + } + }, + { + "startIndex": 2226, + "endIndex": 2499, + "textRun": { + "content": "\t-> student’s realization of deep cause and how to effectively avoid same thing in the future (e.g. didn’t understand that user study design need obstacle, keep in mind in the future) (e.g. metacognitive barriers, if not resolved, very likely to lead to same/other issues)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2499, + "endIndex": 2589, + "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" + } + } + }, + { + "startIndex": 2499, + "endIndex": 2589, + "textRun": { + "content": "\t-> mentor gained new understanding of deep cause, class of issue, ways to approach issue\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2589, + "endIndex": 2710, + "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" + } + } + }, + { + "startIndex": 2589, + "endIndex": 2710, + "textRun": { + "content": "\t-> of course, current issue is resolved = student know how to improve, mentor know what happened beyond surface signals\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2710, + "endIndex": 2711, + "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" + } + } + }, + { + "startIndex": 2710, + "endIndex": 2711, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2711, + "endIndex": 2745, + "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" + } + } + }, + { + "startIndex": 2711, + "endIndex": 2744, + "textRun": { + "content": "Obstacles to root cause analysis:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 2744, + "endIndex": 2745, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2745, + "endIndex": 2773, + "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" + } + } + }, + { + "startIndex": 2745, + "endIndex": 2773, + "textRun": { + "content": "\trecall on the spot is hard\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2773, + "endIndex": 2954, + "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" + } + } + }, + { + "startIndex": 2773, + "endIndex": 2954, + "textRun": { + "content": "\tlack of context to get deep, because deeper causes are often more specific to the situation/student (e.g. misunderstanding specific to one student, personal metacognitive barrier)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 315, + "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" + } + } + }, + { + "endIndex": 2, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2, + "endIndex": 315, + "textRun": { + "content": " A block-based scripting environment in which mentors can quickly and easily express their strategies into computer-executable scripts. OSE aims to enable mentors to express their thoughts freely at their natural level of thinking, by providing them with low-level data as well as high-level pre-built functions.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 315, + "endIndex": 316, + "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" + } + } + }, + { + "startIndex": 315, + "endIndex": 316, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 316, + "endIndex": 703, + "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" + } + } + }, + { + "startIndex": 316, + "endIndex": 318, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 318, + "endIndex": 703, + "textRun": { + "content": " OSE provides a procedural scripting process that includes a script structure (first specify the scope of the script, then construct a detector and strategies) and guidelines (e.g. “users always forget to specify when their script should be executed, have you specified that in your script?”) to guide users to think in a way that align with the OS script structure and execution flow\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 703, + "endIndex": 704, + "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" + } + } + }, + { + "startIndex": 703, + "endIndex": 704, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 704, + "endIndex": 810, + "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" + } + } + }, + { + "startIndex": 704, + "endIndex": 706, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 706, + "endIndex": 810, + "textRun": { + "content": " OSE guides mentor to scaffold and form hypotheses about potential root causes underlying the situation\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 810, + "endIndex": 811, + "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" + } + } + }, + { + "startIndex": 810, + "endIndex": 811, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 811, + "endIndex": 913, + "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" + } + } + }, + { + "startIndex": 811, + "endIndex": 813, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 813, + "endIndex": 913, + "textRun": { + "content": " OSE help mentors diagnose key root causes by promoting context-awareness of the mentee’s situation\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 913, + "endIndex": 914, + "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" + } + } + }, + { + "startIndex": 913, + "endIndex": 914, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 914, + "endIndex": 1027, + "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" + } + } + }, + { + "startIndex": 914, + "endIndex": 1027, + "textRun": { + "content": "-> OSE guide mentors to formulate tailored strategies by prompting them to design strategies for each root cause\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1027, + "endIndex": 1028, + "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" + } + } + }, + { + "startIndex": 1027, + "endIndex": 1028, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1028, + "endIndex": 1029, + "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" + } + } + }, + { + "startIndex": 1028, + "endIndex": 1029, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1029, + "endIndex": 1030, + "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" + } + } + }, + { + "startIndex": 1029, + "endIndex": 1030, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1030, + "endIndex": 1031, + "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" + } + } + }, + { + "startIndex": 1030, + "endIndex": 1031, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1031, + "endIndex": 1263, + "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" + } + } + }, + { + "startIndex": 1031, + "endIndex": 1263, + "textRun": { + "content": "-> Depend on the mentor to explain why their strategies are important, but mentors don’t always explain or have it in mind, and mentees neither have the background knowledge to understand it nor the mindset to contemplate the whys.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1263, + "endIndex": 1420, + "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" + } + } + }, + { + "startIndex": 1263, + "endIndex": 1420, + "textRun": { + "content": "-> after script triggers, before discussion, both mentor and mentee prepare using the same schema to establish a common ground upon which to build diagnosis\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1420, + "endIndex": 1514, + "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" + } + } + }, + { + "startIndex": 1420, + "endIndex": 1514, + "textRun": { + "content": "-> user formulate hypothesis and write down potential root causes they currently have in mind\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 240, + "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" + } + } + }, + { + "endIndex": 2, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2, + "endIndex": 240, + "textRun": { + "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 240, + "endIndex": 241, + "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" + } + } + }, + { + "startIndex": 240, + "endIndex": 241, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 241, + "endIndex": 431, + "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" + } + } + }, + { + "startIndex": 241, + "endIndex": 243, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 243, + "endIndex": 431, + "textRun": { + "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 431, + "endIndex": 432, + "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" + } + } + }, + { + "startIndex": 431, + "endIndex": 432, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 432, + "endIndex": 742, + "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" + } + } + }, + { + "startIndex": 432, + "endIndex": 434, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 434, + "endIndex": 742, + "textRun": { + "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing so that they can help mentees achieve better long-term growth through tailored strategies.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 742, + "endIndex": 743, + "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" + } + } + }, + { + "startIndex": 742, + "endIndex": 743, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 743, + "endIndex": 1002, + "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" + } + } + }, + { + "startIndex": 743, + "endIndex": 745, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 745, + "endIndex": 1002, + "textRun": { + "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1002, + "endIndex": 1003, + "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" + } + } + }, + { + "startIndex": 1002, + "endIndex": 1003, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1003, + "endIndex": 1004, + "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" + } + } + }, + { + "startIndex": 1003, + "endIndex": 1004, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2892100, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1469600, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 68, + "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" + } + } + }, + { + "endIndex": 68, + "textRun": { + "content": "✅/❌ Is this a real example of what the user wants to be able to do?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "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" + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 271, + "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" + } + } + }, + { + "startIndex": 69, + "endIndex": 271, + "textRun": { + "content": "✅/❌ Is your outcome written in a way that will be measurable when you test? (i.e., will you be able to know that your design characteristic successfully helped your user achieve their desired outcome?)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 56, + "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" + } + } + }, + { + "endIndex": 56, + "textRun": { + "content": "✅/❌ Does this obstacle encompass a core user struggle?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "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" + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 57, + "endIndex": 152, + "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" + } + } + }, + { + "startIndex": 57, + "endIndex": 152, + "textRun": { + "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired outcome from being reached?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 152, + "endIndex": 153, + "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" + } + } + }, + { + "startIndex": 152, + "endIndex": 153, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 153, + "endIndex": 332, + "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" + } + } + }, + { + "startIndex": 153, + "endIndex": 332, + "textRun": { + "content": "✅/❌ Does the obstacle present an argument (reason) behind why existing designs are not reaching the outcome (as opposed to just rephrasing that the outcome is not being reached)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 332, + "endIndex": 333, + "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" + } + } + }, + { + "startIndex": 332, + "endIndex": 333, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 333, + "endIndex": 436, + "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" + } + } + }, + { + "startIndex": 333, + "endIndex": 436, + "textRun": { + "content": "✅/❌ Is the statement of the obstacle something that is concrete enough to be measurable or observable?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 110, + "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" + } + } + }, + { + "endIndex": 110, + "textRun": { + "content": "✅/❌ Is your characteristic sufficiently detailed such that someone could go and implement it as you intended?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 110, + "endIndex": 111, + "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" + } + } + }, + { + "startIndex": 110, + "endIndex": 111, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 111, + "endIndex": 342, + "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" + } + } + }, + { + "startIndex": 111, + "endIndex": 342, + "textRun": { + "content": "✅/❌ Does the characteristic clearly distinguish your design from other possible designs (especially existing designs that do not solve the problem)? (i.e., are you sure that it is not too similar to other, unsuccessful solutions?)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 342, + "endIndex": 343, + "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" + } + } + }, + { + "startIndex": 342, + "endIndex": 343, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 343, + "endIndex": 446, + "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" + } + } + }, + { + "startIndex": 343, + "endIndex": 446, + "textRun": { + "content": "✅/❌ Does your proposed characteristic actually resolve the obstacle and help the user meet their goal?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 107, + "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" + } + } + }, + { + "endIndex": 31, + "textRun": { + "content": "✅/❌ Does your argument explain ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 34, + "textRun": { + "content": "how", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 107, + "textRun": { + "content": " the characteristic overcomes the obstacle to reach the desired outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 108, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 108, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 108, + "endIndex": 215, + "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" + } + } + }, + { + "startIndex": 108, + "endIndex": 139, + "textRun": { + "content": "✅/❌ Does this argument explain ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 139, + "endIndex": 142, + "textRun": { + "content": "why", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 142, + "endIndex": 215, + "textRun": { + "content": " the characteristic overcomes the obstacle to reach the desired outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1469600, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_16", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 39, + "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" + } + } + }, + { + "endIndex": 38, + "textRun": { + "content": "Mysore Template: Design Argument {New}", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 38, + "endIndex": 39, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_17", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_14:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_18", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_19", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_19" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_26", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_27", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 729550, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Desired Interface Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 174, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 173, + "textRun": { + "content": "What do you want your interface to enable users to do? Why is having this interface outcome or feature important to realizing your design argument?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 173, + "endIndex": 174, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 30, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Obstacle to Interface Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 30, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 30, + "endIndex": 160, + "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" + } + } + }, + { + "startIndex": 30, + "endIndex": 159, + "textRun": { + "content": "How could things go wrong in trying to create an interface feature that instantiates the design argument? Why might this happen? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 159, + "endIndex": 160, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Design Inspirations\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 87, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 87, + "textRun": { + "content": "Has a similar problem been solved in any other domain? If so, how?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Interface Feature\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 233, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 233, + "textRun": { + "content": "What is the feature or affordance that your system provides to overcome the interface obstacle to reach the desired interface outcome? How is this feature distinguished from existing approaches that would not work?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 36, + "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" + } + } + }, + { + "endIndex": 36, + "textRun": { + "content": "Argument for your interface feature\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 127, + "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" + } + } + }, + { + "startIndex": 36, + "endIndex": 127, + "textRun": { + "content": "Why would your interface feature overcome the obstacle to reaching your interface outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 729550, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2720275, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 164, + "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" + } + } + }, + { + "endIndex": 164, + "textRun": { + "content": "A Mentors should be able to express their strategies into computer-executable scripts (OS scripts) to surface support strategies at appropriate times and settings.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "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" + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 165, + "endIndex": 319, + "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" + } + } + }, + { + "startIndex": 165, + "endIndex": 319, + "textRun": { + "content": "B Mentors should be able to gain an in depth understanding of what mentees are struggling with, why they are struggling with it, and how they are working\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 319, + "endIndex": 320, + "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" + } + } + }, + { + "startIndex": 319, + "endIndex": 320, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 320, + "endIndex": 542, + "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" + } + } + }, + { + "startIndex": 320, + "endIndex": 542, + "textRun": { + "content": "C Given they can do B, mentors should be able to help their mentees learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 542, + "endIndex": 543, + "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" + } + } + }, + { + "startIndex": 542, + "endIndex": 543, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 218, + "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" + } + } + }, + { + "endIndex": 218, + "textRun": { + "content": "The level of abstraction the blocks get at is tricky. How do you find a way to present the code constructs in a more high-level form without it being too generic/hard to understand what it exactly does on the backend?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 218, + "endIndex": 219, + "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" + } + } + }, + { + "startIndex": 218, + "endIndex": 219, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 219, + "endIndex": 224, + "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" + } + } + }, + { + "startIndex": 219, + "endIndex": 224, + "textRun": { + "content": "TODO\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "TODO\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 139, + "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" + } + } + }, + { + "endIndex": 139, + "textRun": { + "content": "-> A block-based scripting environment with human-readable blocks that includes low-level data as well as high-level pre-built functions.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 139, + "endIndex": 140, + "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" + } + } + }, + { + "startIndex": 139, + "endIndex": 140, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 140, + "endIndex": 202, + "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" + } + } + }, + { + "startIndex": 140, + "endIndex": 202, + "textRun": { + "content": "-> OSE provides a procedural scripting process that includes:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 202, + "endIndex": 332, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 202, + "endIndex": 215, + "textRun": { + "content": "A step guide ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 215, + "endIndex": 332, + "textRun": { + "content": "that explains the script structure (first specify the scope of the script, then construct a detector and strategies)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 332, + "endIndex": 333, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 332, + "endIndex": 333, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 333, + "endIndex": 574, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 333, + "endIndex": 343, + "textRun": { + "content": "Guidelines", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 343, + "endIndex": 574, + "textRun": { + "content": " for writing scripts (e.g. “users always forget to specify when their script should be executed, have you specified that in your script?”) to guide users to think in a way that align with the OS script structure and execution flow\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 574, + "endIndex": 841, + "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" + } + } + }, + { + "startIndex": 574, + "endIndex": 841, + "textRun": { + "content": "-> OSE provides a workflow that starts by breaking down a problem into hypotheses about potential root causes, then diagnose key root causes based on the context, and lastly enact a tailored strategy to address the key root cause. This workflow is achieved through: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 841, + "endIndex": 941, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 841, + "endIndex": 860, + "textRun": { + "content": "Scaffolding prompts", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 860, + "endIndex": 941, + "textRun": { + "content": " that prompt the user to think about different root causes behind the situation.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 941, + "endIndex": 942, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 941, + "endIndex": 942, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 942, + "endIndex": 1024, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 942, + "endIndex": 955, + "textRun": { + "content": "Alert Message", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 955, + "endIndex": 1024, + "textRun": { + "content": " that provides context information to help diagnose key root causes \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1024, + "endIndex": 1025, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 1024, + "endIndex": 1025, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1025, + "endIndex": 1140, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 1025, + "endIndex": 1087, + "textRun": { + "content": "One-to-one or one-to-more mapping of root cause to strategies ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1087, + "endIndex": 1140, + "textRun": { + "content": "that guide mentors to formulate tailored strategies \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.mxioyg52qv53": { + "listId": "kix.mxioyg52qv53", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "TODO\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.tiarl0j5q73": { + "listId": "kix.tiarl0j5q73", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2720275, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1355675, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 98, + "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" + } + } + }, + { + "endIndex": 98, + "textRun": { + "content": "✅/❌ Do you explain why your interface outcome is important for implementing your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired interface outcome from being reached?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 361, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 361, + "textRun": { + "content": "✅/❌ Does the obstacle present an argument (reason) behind why it might be difficult to create an interface feature that meets the outcome? In other words, do you argue why the obstacle may hinder efficiency, learnability, or safety within your interface?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 101, + "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" + } + } + }, + { + "endIndex": 101, + "textRun": { + "content": "✅/❌ Did you consider domains far from the one of your project but whose interface needs are similar?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 101, + "endIndex": 102, + "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" + } + } + }, + { + "startIndex": 101, + "endIndex": 102, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 102, + "endIndex": 225, + "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" + } + } + }, + { + "startIndex": 102, + "endIndex": 225, + "textRun": { + "content": "✅/❌ For each idea, do you explain why the obstacle they attempt to overcome is similar to the obstacle your interface has?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 69, + "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" + } + } + }, + { + "endIndex": 69, + "textRun": { + "content": "✅/❌ Does your feature consider aspects of efficiency in interaction?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "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" + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 70, + "endIndex": 141, + "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" + } + } + }, + { + "startIndex": 70, + "endIndex": 141, + "textRun": { + "content": "✅/❌ Does your feature consider aspects of learnability in interaction?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 141, + "endIndex": 142, + "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" + } + } + }, + { + "startIndex": 141, + "endIndex": 142, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 142, + "endIndex": 207, + "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" + } + } + }, + { + "startIndex": 142, + "endIndex": 207, + "textRun": { + "content": "✅/❌ Does your feature consider aspects of safety in interaction?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 207, + "endIndex": 208, + "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" + } + } + }, + { + "startIndex": 207, + "endIndex": 208, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 208, + "endIndex": 319, + "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" + } + } + }, + { + "startIndex": 208, + "endIndex": 319, + "textRun": { + "content": "✅/❌ Does your proposed feature actually resolve the interface obstacle and meet the desired interface outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 130, + "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" + } + } + }, + { + "endIndex": 31, + "textRun": { + "content": "✅/❌ Does your argument explain ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 34, + "textRun": { + "content": "how", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 130, + "textRun": { + "content": " the interface feature overcomes the interface obstacle to reach the desired interface outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 130, + "endIndex": 131, + "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" + } + } + }, + { + "startIndex": 130, + "endIndex": 131, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 131, + "endIndex": 261, + "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" + } + } + }, + { + "startIndex": 131, + "endIndex": 162, + "textRun": { + "content": "✅/❌ Does your argument explain ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 162, + "endIndex": 165, + "textRun": { + "content": "why", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 165, + "endIndex": 261, + "textRun": { + "content": " the interface feature overcomes the interface obstacle to reach the desired interface outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1355675, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_28", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 33, + "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" + } + } + }, + { + "endIndex": 32, + "textRun": { + "content": "Mysore Template: Interface Model {New}", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 32, + "endIndex": 33, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_29", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 16, + "textRun": { + "content": "[Grace & Jordan]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 16, + "endIndex": 17, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_26:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_30", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_31", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_31" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_32", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_33", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 696425, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 51, + "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" + } + } + }, + { + "endIndex": 51, + "textRun": { + "content": "Restate an interface feature you plan to implement\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 51, + "endIndex": 155, + "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" + } + } + }, + { + "startIndex": 51, + "endIndex": 155, + "textRun": { + "content": "Based on your interface model, what is one feature or interaction you want to implement in your system?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 23, + "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" + } + } + }, + { + "endIndex": 22, + "textRun": { + "content": "Desired system outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 23, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 112, + "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" + } + } + }, + { + "startIndex": 23, + "endIndex": 111, + "textRun": { + "content": "What does your system need to be able to do in order to implement the interface feature?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 111, + "endIndex": 112, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 36, + "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" + } + } + }, + { + "endIndex": 35, + "textRun": { + "content": "Obstacle to reaching system outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 35, + "endIndex": 36, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 127, + "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" + } + } + }, + { + "startIndex": 36, + "endIndex": 126, + "textRun": { + "content": "What could go wrong when trying to implement the interface feature? Why might this happen?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 126, + "endIndex": 127, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "System method or technique\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 209, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 209, + "textRun": { + "content": "What is the method or technique that you system includes in order to implement the interface feature? How is this feature distinguished from existing approaches that would not work?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 42, + "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" + } + } + }, + { + "endIndex": 42, + "textRun": { + "content": "Argument for your system method/technique\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 42, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 42, + "endIndex": 121, + "textRun": { + "content": "Why would your approach overcome the obstacle to reaching your system outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 696425, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2833525, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2833525, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1242425, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 25, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "No checklist questions. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 212, + "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" + } + } + }, + { + "endIndex": 212, + "textRun": { + "content": "✅/❌ Do you explain why your system outcome is important for implementing your interface feature? In other words, do you consider why would your interaction would fail without the system outcome you have written?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 102, + "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" + } + } + }, + { + "endIndex": 102, + "textRun": { + "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired system outcome from being reached?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 102, + "endIndex": 103, + "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" + } + } + }, + { + "startIndex": 102, + "endIndex": 103, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 234, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 234, + "textRun": { + "content": "✅/❌ Does the obstacle present an argument (reason) behind why it might be difficult to implement an interface feature as intended?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 234, + "endIndex": 235, + "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" + } + } + }, + { + "startIndex": 234, + "endIndex": 235, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 235, + "endIndex": 369, + "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" + } + } + }, + { + "startIndex": 235, + "endIndex": 369, + "textRun": { + "content": "✅/❌ Do you consider existing implementations (e.g., algorithms; APIs; other deployed systems) that can already address this obstacle?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 117, + "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" + } + } + }, + { + "endIndex": 117, + "textRun": { + "content": "✅/❌Is your description of the proposed method or technique precise enough that someone else can go and implement it?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 117, + "endIndex": 118, + "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" + } + } + }, + { + "startIndex": 117, + "endIndex": 118, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 118, + "endIndex": 223, + "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" + } + } + }, + { + "startIndex": 118, + "endIndex": 223, + "textRun": { + "content": "✅/❌ Does your proposed feature actually resolve the system obstacle and meet the desired system outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 130, + "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" + } + } + }, + { + "endIndex": 31, + "textRun": { + "content": "✅/❌ Does your argument explain ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 34, + "textRun": { + "content": "how", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 130, + "textRun": { + "content": " the system method/technique overcomes the system obstacle to reach the desired system outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 130, + "endIndex": 131, + "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" + } + } + }, + { + "startIndex": 130, + "endIndex": 131, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 131, + "endIndex": 261, + "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" + } + } + }, + { + "startIndex": 131, + "endIndex": 162, + "textRun": { + "content": "✅/❌ Does your argument explain ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 162, + "endIndex": 165, + "textRun": { + "content": "why", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 165, + "endIndex": 261, + "textRun": { + "content": " the system method/technique overcomes the system obstacle to reach the desired system outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1242425, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_34", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 30, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Mysore Template: System Model", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 30, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_35", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_32:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_36", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_37", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_37" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g226bd032f2e_0_0", + "pageElements": [ + { + "objectId": "g226bd032f2e_0_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.4067, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 63, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 62, + "textRun": { + "content": "Takeaways from User Study Root Cause Analysis", + "style": {} + } + }, + { + "startIndex": 62, + "endIndex": 63, + "textRun": { + "content": "\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g226bd032f2e_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g226bd032f2e_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g226bd032f2e_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g226bd032f2e_0_3" + } + }, + "isSkipped": true + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g226bd032f2e_0_4", + "pageElements": [ + { + "objectId": "g226bd032f2e_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 188, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.81n4ev1xoxu8", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "endIndex": 188, + "textRun": { + "content": "When trying to describing the strategy. It is something I have gotten coaching about, when I see a demo with dummy inputs, it frustrates me because we should aim to make it understanding.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 188, + "endIndex": 462, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.81n4ev1xoxu8", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 188, + "endIndex": 462, + "textRun": { + "content": "As writing the strategy and the reasons why, I was thinking on my feet. It was hard to explain why this is an important practice, because that’s what I’ve been told. I got feedback on in the past, I didn’t question so much the why until I have to explain it in the moment. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 462, + "endIndex": 930, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.81n4ev1xoxu8", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 462, + "endIndex": 930, + "textRun": { + "content": "‘Knowing the example you’re building towards can help you scope to what features is gonna just make that one example work’ ‘beyond completing the tasks themselves, the good representation for a tech story is demonstrating and checking if the current implementation supports the user journey, so it needs to be a real user journey, and we have to put ourselves in the shoes.’\u000bgot into the whys of why this important. Planning towards a demo, or testing through cases. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 930, + "endIndex": 1030, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.wzabc648okj6", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 930, + "endIndex": 1030, + "textRun": { + "content": "How did you construct your detector, things to pay attention to, direct ways of trying to detect it\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 1030, + "endIndex": 1068, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.wzabc648okj6", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 1030, + "endIndex": 1067, + "textRun": { + "content": "GitHub reminded me ways of doing tech", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 1067, + "endIndex": 1068, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.81n4ev1xoxu8": { + "listId": "kix.81n4ev1xoxu8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.nm59wlfv7kbh": { + "listId": "kix.nm59wlfv7kbh", + "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 + } + } + } + } + }, + "kix.wzabc648okj6": { + "listId": "kix.wzabc648okj6", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 239, + "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" + } + } + }, + { + "endIndex": 239, + "textRun": { + "content": "Recall - RC2 was something Oscar did run into. Also had RC3 “didn’t realized it was a priority”, in retrospect, the strategy would be have really great to explain to him, not just Ryan told me to do the demo, but why is the demo important\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 239, + "endIndex": 240, + "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" + } + } + }, + { + "startIndex": 239, + "endIndex": 240, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 48, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Having scaffolding about how to find the causes\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "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" + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 49, + "endIndex": 113, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.31gr3vlcpg1b", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 49, + "endIndex": 113, + "textRun": { + "content": "Broke down into different variables, focus on each individually\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 113, + "endIndex": 325, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.31gr3vlcpg1b", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 113, + "endIndex": 325, + "textRun": { + "content": "I’m a fan of specifying concept variables for myself and visually group things. It was nice to leave things separate, so I can choose when to work on things and address them separately if some parts doesn’t run.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 325, + "endIndex": 365, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.31gr3vlcpg1b", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 325, + "endIndex": 365, + "textRun": { + "content": "Think about how the detector would fail\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 365, + "endIndex": 394, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.o2463xicuh0m", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 365, + "endIndex": 394, + "textRun": { + "content": "Break situation into signals\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 394, + "endIndex": 422, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "magnitude": 12, + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 12, + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.o2463xicuh0m", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + } + }, + { + "startIndex": 394, + "endIndex": 421, + "textRun": { + "content": "Contain logic was intuitive", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Times New Roman", + "fontSize": { + "magnitude": 11, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Times New Roman", + "weight": 400 + } + } + } + }, + { + "startIndex": 421, + "endIndex": 422, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.21n3yx908xp4": { + "listId": "kix.21n3yx908xp4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.31gr3vlcpg1b": { + "listId": "kix.31gr3vlcpg1b", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.4db35bz3of4o": { + "listId": "kix.4db35bz3of4o", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.fhc3css0xp70": { + "listId": "kix.fhc3css0xp70", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.o2463xicuh0m": { + "listId": "kix.o2463xicuh0m", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.zhns8wi1swkn": { + "listId": "kix.zhns8wi1swkn", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 30, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "endIndex": 30, + "textRun": { + "content": "Root cause: not case specific\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 30, + "endIndex": 89, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 30, + "endIndex": 89, + "textRun": { + "content": "Root cause analysis easier on specific part of the problem\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 89, + "endIndex": 137, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 89, + "endIndex": 137, + "textRun": { + "content": "Scaffolding and keep asking follow up questions\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 137, + "endIndex": 211, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 137, + "endIndex": 211, + "textRun": { + "content": "Good balance of challenging student (reflection e,g.) and support student\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 211, + "endIndex": 508, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "5.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 211, + "endIndex": 508, + "textRun": { + "content": "Student’s perspective: personal growth from root cause analysis\u000b-> Challenging Jordan to reflect, forced to reflect on decision I made while still feeling supported, drawing connections\u000b-> student have learned something new about themselves, their way of working\u000b-> growth, avoiding same mistake,\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 508, + "endIndex": 574, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "6.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 508, + "endIndex": 574, + "textRun": { + "content": "SIG meeting: focus on sprint, risk, plan for the future vs focus \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 574, + "endIndex": 949, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "7.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 574, + "endIndex": 949, + "textRun": { + "content": "Ineffective about list of RC:\u000b-> discouraging follow-up questions, because it might be encouraging a specific of approaching the issue (kapil: ruling out root cause)\u000b-> multiple causes + specific to students and project = list of root cause not inclusive\u000b-> lack of scaffolding\u000b-> mentor’s various understanding of what root cause is (action-oriented vs reflection-oriented)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 949, + "endIndex": 1412, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "8.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 949, + "endIndex": 1412, + "textRun": { + "content": "How to help mentor scaffold hypothesis:\u000b-> reflection-oriented: challenge student to reflect -> follow-up questions\u000b-> make student feel supported while they do reflection\u000b-> Awareness for multiple and hidden causes\u000b-> establish clear goal: none-case-specific student personal growth -> assess mentor’s level of understanding in relation to this goal -> ‘who can define the appropriate depth of root cause analysis? -> help mentors best determine for themselves’\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1412, + "endIndex": 1413, + "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" + } + } + }, + { + "startIndex": 1412, + "endIndex": 1413, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1413, + "endIndex": 1425, + "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" + } + } + }, + { + "startIndex": 1413, + "endIndex": 1425, + "textRun": { + "content": "Limitation:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1425, + "endIndex": 1515, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.odaj9w5s8tdv", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 1425, + "endIndex": 1515, + "textRun": { + "content": "Might have been more open with Ryan (talk with a tone that makes students feel supported)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.anp8oh6h78lg": { + "listId": "kix.anp8oh6h78lg", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.odaj9w5s8tdv": { + "listId": "kix.odaj9w5s8tdv", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ordpe99folbm": { + "listId": "kix.ordpe99folbm", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 120, + "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" + } + } + }, + { + "endIndex": 120, + "textRun": { + "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 90, + "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" + } + } + }, + { + "endIndex": 90, + "textRun": { + "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "textRun": { + "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 103, + "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" + } + } + }, + { + "endIndex": 103, + "textRun": { + "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "textRun": { + "content": "✅ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "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" + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "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" + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "textRun": { + "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "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" + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 253, + "endIndex": 460, + "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" + } + } + }, + { + "startIndex": 253, + "endIndex": 460, + "textRun": { + "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 460, + "endIndex": 461, + "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" + } + } + }, + { + "startIndex": 460, + "endIndex": 461, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 461, + "endIndex": 531, + "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" + } + } + }, + { + "startIndex": 461, + "endIndex": 531, + "textRun": { + "content": "❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 106, + "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" + } + } + }, + { + "endIndex": 106, + "textRun": { + "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "textRun": { + "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 986350, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1016775, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 4854875, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g226bd032f2e_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g226bd032f2e_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 8, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "[Grace]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g226bd032f2e_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g226bd032f2e_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g226bd032f2e_0_9", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g226bd032f2e_0_9" + } + }, + "isSkipped": true + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g24afab86e39_0_11", + "pageElements": [ + { + "objectId": "g24afab86e39_0_12", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.4067, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 58, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 57, + "textRun": { + "content": "Takeaways from User Testing (With HaoQi)", + "style": {} + } + }, + { + "startIndex": 57, + "endIndex": 58, + "textRun": { + "content": "\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g24afab86e39_0_11:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g24afab86e39_0_13", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g24afab86e39_0_14", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g24afab86e39_0_14" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g24afab86e39_0_5", + "pageElements": [ + { + "objectId": "g24afab86e39_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 25, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Goal for this activity: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 93, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.81n4ev1xoxu8", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 25, + "endIndex": 93, + "textRun": { + "content": "Observe to see if OSE would be helpful during the diagnosis process\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 186, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.81n4ev1xoxu8", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 93, + "endIndex": 186, + "textRun": { + "content": "Learn how useful each affordances were and how the mentor used them in his diagnosis process\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.81n4ev1xoxu8": { + "listId": "kix.81n4ev1xoxu8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.nm59wlfv7kbh": { + "listId": "kix.nm59wlfv7kbh", + "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 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 3, + "textRun": { + "content": "yes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 3, + "endIndex": 4, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 67, + "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" + } + } + }, + { + "endIndex": 67, + "textRun": { + "content": "Mentor uses the affordances in according to his diagnosis process.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 67, + "endIndex": 68, + "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" + } + } + }, + { + "startIndex": 67, + "endIndex": 68, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "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" + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.21n3yx908xp4": { + "listId": "kix.21n3yx908xp4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.4db35bz3of4o": { + "listId": "kix.4db35bz3of4o", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.fhc3css0xp70": { + "listId": "kix.fhc3css0xp70", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.zhns8wi1swkn": { + "listId": "kix.zhns8wi1swkn", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 100, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.gizt07tdx4rt", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "endIndex": 100, + "textRun": { + "content": "Lack visual identifier for mentor to identify what project or whose project they are diagnosing for\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 100, + "endIndex": 186, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.gizt07tdx4rt", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 100, + "endIndex": 186, + "textRun": { + "content": "Mentors don’t want their notes to be seen, which prevent mentees to see the interface\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 186, + "endIndex": 387, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.gizt07tdx4rt", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 186, + "endIndex": 387, + "textRun": { + "content": "List of root causes not quite right (a bit vague) : ex: sprint log stories tend to be vague (explanation: it’s not that students don’t plan anything in their stories, it’s that their stories is vague)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 387, + "endIndex": 641, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.gizt07tdx4rt", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 387, + "endIndex": 641, + "textRun": { + "content": "Mentor preferred to receive verbal update by asking question ( + asking mentees to open up their writing spaces) rather than looking at those documents themselves beforehand. (Writing things down is meant for the person who wrote them to stay organized)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.anp8oh6h78lg": { + "listId": "kix.anp8oh6h78lg", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.gizt07tdx4rt": { + "listId": "kix.gizt07tdx4rt", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ordpe99folbm": { + "listId": "kix.ordpe99folbm", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 120, + "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" + } + } + }, + { + "endIndex": 120, + "textRun": { + "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 90, + "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" + } + } + }, + { + "endIndex": 90, + "textRun": { + "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "textRun": { + "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 103, + "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" + } + } + }, + { + "endIndex": 103, + "textRun": { + "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "textRun": { + "content": "✅ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "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" + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "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" + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "textRun": { + "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "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" + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 253, + "endIndex": 460, + "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" + } + } + }, + { + "startIndex": 253, + "endIndex": 460, + "textRun": { + "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 460, + "endIndex": 461, + "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" + } + } + }, + { + "startIndex": 460, + "endIndex": 461, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 461, + "endIndex": 531, + "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" + } + } + }, + { + "startIndex": 461, + "endIndex": 531, + "textRun": { + "content": "❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 106, + "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" + } + } + }, + { + "endIndex": 106, + "textRun": { + "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "textRun": { + "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 986350, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2935825, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2935825, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g24afab86e39_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g24afab86e39_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 8, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "[Grace]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g24afab86e39_0_5:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g24afab86e39_0_9", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g24afab86e39_0_10", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g24afab86e39_0_10" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22408989adf_0_0", + "pageElements": [ + { + "objectId": "g22408989adf_0_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.4067, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 46, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 45, + "textRun": { + "content": "Takeaways from Status Update", + "style": {} + } + }, + { + "startIndex": 45, + "endIndex": 46, + "textRun": { + "content": "\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22408989adf_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22408989adf_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22408989adf_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22408989adf_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22408989adf_0_4", + "pageElements": [ + { + "objectId": "g22408989adf_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 25, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Goal for this activity: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 170, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.81n4ev1xoxu8", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 25, + "endIndex": 170, + "textRun": { + "content": "Let mentor and mentees collectively script for a situation that mentor have chosen, see if mentors discussing with students help improve scripts\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 170, + "endIndex": 229, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.81n4ev1xoxu8", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 170, + "endIndex": 229, + "textRun": { + "content": "Obtain comprehensive, good scripts that we can deploy soon\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.81n4ev1xoxu8": { + "listId": "kix.81n4ev1xoxu8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.nm59wlfv7kbh": { + "listId": "kix.nm59wlfv7kbh", + "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 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 3, + "textRun": { + "content": "yes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 3, + "endIndex": 4, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 57, + "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" + } + } + }, + { + "endIndex": 57, + "textRun": { + "content": "Mentors discussing with students helped improve scripts:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 57, + "endIndex": 125, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.4db35bz3of4o", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 57, + "endIndex": 125, + "textRun": { + "content": "“Brilliant Insights from students about what’s actually happening” \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 125, + "endIndex": 153, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.4db35bz3of4o", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 125, + "endIndex": 153, + "textRun": { + "content": "“Mentor is always guessing”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 153, + "endIndex": 221, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.4db35bz3of4o", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 153, + "endIndex": 221, + "textRun": { + "content": "“This time students directly tell me, came up with good strategies”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 221, + "endIndex": 354, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.4db35bz3of4o", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 221, + "endIndex": 354, + "textRun": { + "content": "Haoqi’s group contributed more than half of the root causes by thinking through challenges for each of them from personal experience\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 354, + "endIndex": 387, + "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" + } + } + }, + { + "startIndex": 354, + "endIndex": 387, + "textRun": { + "content": "Dani coming up with root causes:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 387, + "endIndex": 421, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.21n3yx908xp4", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 387, + "endIndex": 421, + "textRun": { + "content": "“Drawing from my past experience“\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 421, + "endIndex": 536, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.21n3yx908xp4", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 421, + "endIndex": 536, + "textRun": { + "content": "“Break down task of updating canvas into subtasks, failure of subtasks can lead to failure of the updating canvas”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 536, + "endIndex": 573, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.21n3yx908xp4", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 536, + "endIndex": 573, + "textRun": { + "content": "Some component of process that BROKE\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 573, + "endIndex": 636, + "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" + } + } + }, + { + "startIndex": 573, + "endIndex": 636, + "textRun": { + "content": "Ella: “hard to come up with causes that don’t feel circular” \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 636, + "endIndex": 730, + "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" + } + } + }, + { + "startIndex": 636, + "endIndex": 730, + "textRun": { + "content": "-> Why is coming up with root causes challenging for experienced mentors? = recall + guessing\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 730, + "endIndex": 870, + "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" + } + } + }, + { + "startIndex": 730, + "endIndex": 870, + "textRun": { + "content": "-> Why is coming up with root causes challenging for novice mentors? = recall + cognitive thinking + lack of understanding of deeper causes\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 870, + "endIndex": 871, + "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" + } + } + }, + { + "startIndex": 870, + "endIndex": 871, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.21n3yx908xp4": { + "listId": "kix.21n3yx908xp4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.4db35bz3of4o": { + "listId": "kix.4db35bz3of4o", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.fhc3css0xp70": { + "listId": "kix.fhc3css0xp70", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.zhns8wi1swkn": { + "listId": "kix.zhns8wi1swkn", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 159, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "endIndex": 159, + "textRun": { + "content": "Even for complex situations that mentors chose, mentors were able to express their high-level understanding of work strategies using the pre-built functions. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 159, + "endIndex": 277, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 159, + "endIndex": 277, + "textRun": { + "content": "Interesting approaches adopted by mentors -> new ways of scripting\u000b-> Not just scripts for when something bad happens\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 277, + "endIndex": 468, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 277, + "endIndex": 468, + "textRun": { + "content": "-> check-in/prevention scripts: when started building prototype, check to see if aligned with conceptual diagram/discuss roadblocks -> is root cause analysis suitable for prevention scripts?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 468, + "endIndex": 675, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.anp8oh6h78lg", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 468, + "endIndex": 675, + "textRun": { + "content": "Scripting with students helps mentors understand the perspective of mentees by learning how the mentees are working, and what’s lacking in their understandings and what otherwise might have been overlooked.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.anp8oh6h78lg": { + "listId": "kix.anp8oh6h78lg", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ordpe99folbm": { + "listId": "kix.ordpe99folbm", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 120, + "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" + } + } + }, + { + "endIndex": 120, + "textRun": { + "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 90, + "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" + } + } + }, + { + "endIndex": 90, + "textRun": { + "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "textRun": { + "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 103, + "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" + } + } + }, + { + "endIndex": 103, + "textRun": { + "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "textRun": { + "content": "✅ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "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" + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "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" + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "textRun": { + "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "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" + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 253, + "endIndex": 460, + "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" + } + } + }, + { + "startIndex": 253, + "endIndex": 460, + "textRun": { + "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 460, + "endIndex": 461, + "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" + } + } + }, + { + "startIndex": 460, + "endIndex": 461, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 461, + "endIndex": 531, + "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" + } + } + }, + { + "startIndex": 461, + "endIndex": 531, + "textRun": { + "content": "❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 106, + "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" + } + } + }, + { + "endIndex": 106, + "textRun": { + "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "textRun": { + "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 986350, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2935825, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2935825, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g22408989adf_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g22408989adf_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 8, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "[Grace]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22408989adf_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22408989adf_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22408989adf_0_9", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22408989adf_0_9" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g223d36f6eaa_0_0", + "pageElements": [ + { + "objectId": "g223d36f6eaa_0_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.4067, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 59, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 58, + "textRun": { + "content": "Takeaways from RC User Testing(with Dani)", + "style": {} + } + }, + { + "startIndex": 58, + "endIndex": 59, + "textRun": { + "content": "\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g223d36f6eaa_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g223d36f6eaa_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g223d36f6eaa_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g223d36f6eaa_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g223d36f6eaa_0_4", + "pageElements": [ + { + "objectId": "g223d36f6eaa_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 47, + "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" + } + } + }, + { + "endIndex": 47, + "textRun": { + "content": "Procrastinating + feel overwhelmed by the task\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 47, + "endIndex": 48, + "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" + } + } + }, + { + "startIndex": 47, + "endIndex": 48, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 48, + "endIndex": 86, + "textRun": { + "content": "Focus too much on doing, not thinking\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 165, + "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" + } + } + }, + { + "startIndex": 86, + "endIndex": 165, + "textRun": { + "content": "-> producing a prototype. they‘re not planning before they execute a user test\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 165, + "endIndex": 166, + "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" + } + } + }, + { + "startIndex": 165, + "endIndex": 166, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 166, + "endIndex": 198, + "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" + } + } + }, + { + "startIndex": 166, + "endIndex": 198, + "textRun": { + "content": "Don’t know how to update canvas\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 199, + "endIndex": 223, + "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" + } + } + }, + { + "startIndex": 199, + "endIndex": 223, + "textRun": { + "content": "Forgot to update canvas\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 223, + "endIndex": 224, + "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" + } + } + }, + { + "startIndex": 223, + "endIndex": 224, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 224, + "endIndex": 258, + "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" + } + } + }, + { + "startIndex": 224, + "endIndex": 258, + "textRun": { + "content": "Don’t know where to update canvas\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 258, + "endIndex": 291, + "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" + } + } + }, + { + "startIndex": 258, + "endIndex": 291, + "textRun": { + "content": "Don’t know what to say on canvas\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 291, + "endIndex": 292, + "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" + } + } + }, + { + "startIndex": 291, + "endIndex": 292, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 292, + "endIndex": 326, + "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" + } + } + }, + { + "startIndex": 292, + "endIndex": 326, + "textRun": { + "content": "“Drawing from my past experience“\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 326, + "endIndex": 441, + "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" + } + } + }, + { + "startIndex": 326, + "endIndex": 441, + "textRun": { + "content": "“Break down task of updating canvas into subtasks, failure of subtasks can lead to failure of the updating canvas”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 441, + "endIndex": 478, + "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" + } + } + }, + { + "startIndex": 441, + "endIndex": 478, + "textRun": { + "content": "Some component of process that BROKE\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "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" + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1, + "endIndex": 48, + "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" + } + } + }, + { + "startIndex": 1, + "endIndex": 47, + "textRun": { + "content": "Procrastinating + feel overwhelmed by the task", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 47, + "endIndex": 48, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 85, + "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" + } + } + }, + { + "startIndex": 48, + "endIndex": 85, + "textRun": { + "content": "Total points committed -> few points\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 184, + "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" + } + } + }, + { + "startIndex": 85, + "endIndex": 184, + "textRun": { + "content": "Strategy -> Ask if they’re using the sprint log, if they are, ask why they’re not committing point\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 184, + "endIndex": 185, + "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" + } + } + }, + { + "startIndex": 184, + "endIndex": 185, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 185, + "endIndex": 223, + "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" + } + } + }, + { + "startIndex": 185, + "endIndex": 223, + "textRun": { + "content": "Focus too much on doing, not thinking\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 223, + "endIndex": 302, + "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" + } + } + }, + { + "startIndex": 223, + "endIndex": 302, + "textRun": { + "content": "-> producing a prototype. they‘re not planning before they execute a user test\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 302, + "endIndex": 360, + "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" + } + } + }, + { + "startIndex": 302, + "endIndex": 360, + "textRun": { + "content": "-> 0 points committed, don’t even have stories filled out\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 360, + "endIndex": 380, + "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" + } + } + }, + { + "startIndex": 360, + "endIndex": 380, + "textRun": { + "content": "-> Time last edited\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 119, + "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" + } + } + }, + { + "endIndex": 119, + "textRun": { + "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 119, + "endIndex": 120, + "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" + } + } + }, + { + "startIndex": 119, + "endIndex": 120, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 90, + "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" + } + } + }, + { + "endIndex": 90, + "textRun": { + "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "textRun": { + "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 103, + "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" + } + } + }, + { + "endIndex": 103, + "textRun": { + "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "textRun": { + "content": "✅ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "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" + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "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" + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "textRun": { + "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "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" + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 253, + "endIndex": 459, + "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" + } + } + }, + { + "startIndex": 253, + "endIndex": 459, + "textRun": { + "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 459, + "endIndex": 460, + "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" + } + } + }, + { + "startIndex": 459, + "endIndex": 460, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 460, + "endIndex": 530, + "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" + } + } + }, + { + "startIndex": 460, + "endIndex": 530, + "textRun": { + "content": "❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 106, + "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" + } + } + }, + { + "endIndex": 106, + "textRun": { + "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "textRun": { + "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g223d36f6eaa_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g223d36f6eaa_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 8, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "[Grace]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g223d36f6eaa_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g223d36f6eaa_0_9", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g223d36f6eaa_0_10", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g223d36f6eaa_0_10" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g23729163056_0_0", + "pageElements": [ + { + "objectId": "g23729163056_0_1", + "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": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "textRun": { + "content": "Study Design \n", + "style": {} + } + }, + { + "startIndex": 31, + "endIndex": 49, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 31, + "endIndex": 49, + "textRun": { + "content": "SP’23 Field Study\n", + "style": { + "bold": true, + "fontSize": { + "magnitude": 28, + "unit": "PT" + } + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g23729163056_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g23729163056_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g23729163056_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g23729163056_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g23729163056_0_4", + "pageElements": [ + { + "objectId": "g23729163056_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 565625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 22, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "Goals of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 165, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 164, + "textRun": { + "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 65, + "textRun": { + "content": "Who will you test your prototype with? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 65, + "endIndex": 66, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "textRun": { + "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "High-Level Expected Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "textRun": { + "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 565625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 4211800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 97, + "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" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "Goal 1:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 7, + "endIndex": 97, + "textRun": { + "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 98, + "endIndex": 147, + "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" + } + } + }, + { + "startIndex": 98, + "endIndex": 147, + "textRun": { + "content": "If it helps, we can continue with this workflow.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 147, + "endIndex": 237, + "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" + } + } + }, + { + "startIndex": 147, + "endIndex": 237, + "textRun": { + "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 237, + "endIndex": 238, + "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" + } + } + }, + { + "startIndex": 237, + "endIndex": 238, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 238, + "endIndex": 239, + "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" + } + } + }, + { + "startIndex": 238, + "endIndex": 239, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 239, + "endIndex": 305, + "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" + } + } + }, + { + "startIndex": 239, + "endIndex": 246, + "textRun": { + "content": "Goal 2:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 246, + "endIndex": 305, + "textRun": { + "content": " See what obstacles mentors face in diagnosing root causes\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 305, + "endIndex": 306, + "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" + } + } + }, + { + "startIndex": 305, + "endIndex": 306, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 306, + "endIndex": 471, + "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" + } + } + }, + { + "startIndex": 306, + "endIndex": 471, + "textRun": { + "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.txqi0c27zz40": { + "listId": "kix.txqi0c27zz40", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ynplpxhcweip": { + "listId": "kix.ynplpxhcweip", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 41, + "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" + } + } + }, + { + "endIndex": 13, + "textRun": { + "content": "Participants:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 41, + "textRun": { + "content": " 1 mentor and their mentees\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 41, + "endIndex": 42, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 41, + "endIndex": 42, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 42, + "endIndex": 85, + "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" + } + } + }, + { + "startIndex": 42, + "endIndex": 54, + "textRun": { + "content": "Recruitment:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 54, + "endIndex": 85, + "textRun": { + "content": " Within DTR, already recruited\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 86, + "endIndex": 101, + "textRun": { + "content": "Communication: ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 101, + "endIndex": 121, + "textRun": { + "content": "Slack and in-person\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 122, + "endIndex": 184, + "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" + } + } + }, + { + "startIndex": 122, + "endIndex": 136, + "textRun": { + "content": "Access issues:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 136, + "endIndex": 184, + "textRun": { + "content": " We may need temporary access to Slack channels\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.5et11dq4lm66": { + "listId": "kix.5et11dq4lm66", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.vzvz2huetn83": { + "listId": "kix.vzvz2huetn83", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 6, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "endIndex": 6, + "textRun": { + "content": "Setup\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 6, + "endIndex": 262, + "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" + } + } + }, + { + "startIndex": 6, + "endIndex": 262, + "textRun": { + "content": "We will read each team’s sprintlogs, canvases, and slack channels to look for signs of struggling. We will draft a description of the problem, take the problem to three experienced mentors, and ask them to come up with a comprehensive list of root causes \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 262, + "endIndex": 275, + "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" + } + } + }, + { + "startIndex": 262, + "endIndex": 275, + "textRun": { + "content": "+ strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 275, + "endIndex": 276, + "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" + } + } + }, + { + "startIndex": 275, + "endIndex": 276, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 276, + "endIndex": 288, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 276, + "endIndex": 288, + "textRun": { + "content": "Preparation\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 288, + "endIndex": 382, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.f2d3x4uv8p06", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 288, + "endIndex": 382, + "textRun": { + "content": "Meet with Ryan before is SIG meeting to show him the signals, the root causes, and strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 382, + "endIndex": 451, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.f2d3x4uv8p06", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 382, + "endIndex": 451, + "textRun": { + "content": "Ryan will think about how he’s gonna use this information during SIG\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 451, + "endIndex": 554, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.f2d3x4uv8p06", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 451, + "endIndex": 554, + "textRun": { + "content": "Ryan will also examine some context information before SIG to help diagnose the problem if he wants to\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 554, + "endIndex": 555, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 554, + "endIndex": 555, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 555, + "endIndex": 566, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 555, + "endIndex": 566, + "textRun": { + "content": "During SIG\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 566, + "endIndex": 577, + "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" + } + } + }, + { + "startIndex": 566, + "endIndex": 577, + "textRun": { + "content": "Ryan will:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 577, + "endIndex": 638, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.ixxpl7mibqvo", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 577, + "endIndex": 638, + "textRun": { + "content": "Discuss this with his mentees to finish diagnose the problem\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 638, + "endIndex": 697, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.ixxpl7mibqvo", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 638, + "endIndex": 697, + "textRun": { + "content": "Enact strategy that they have designed for that root cause\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 697, + "endIndex": 698, + "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" + } + } + }, + { + "startIndex": 697, + "endIndex": 698, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 698, + "endIndex": 719, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 698, + "endIndex": 719, + "textRun": { + "content": "Post-study Interview\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 719, + "endIndex": 827, + "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" + } + } + }, + { + "startIndex": 719, + "endIndex": 827, + "textRun": { + "content": "We will interview mentors and mentees about how this framework has influenced their mentoring interactions.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.50iaokq8q7xd": { + "listId": "kix.50iaokq8q7xd", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.f2d3x4uv8p06": { + "listId": "kix.f2d3x4uv8p06", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ixxpl7mibqvo": { + "listId": "kix.ixxpl7mibqvo", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "RC design argument:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 114, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 114, + "textRun": { + "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 114, + "endIndex": 270, + "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" + } + } + }, + { + "startIndex": 114, + "endIndex": 270, + "textRun": { + "content": " “I didn’t think of xxx as a potential root cause but the list of root causes helped me realize that it’s a possible reason why my mentees are struggling.”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 270, + "endIndex": 295, + "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" + } + } + }, + { + "startIndex": 270, + "endIndex": 295, + "textRun": { + "content": "-> Observations such as:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 295, + "endIndex": 401, + "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" + } + } + }, + { + "startIndex": 295, + "endIndex": 401, + "textRun": { + "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 401, + "endIndex": 402, + "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" + } + } + }, + { + "startIndex": 401, + "endIndex": 402, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 402, + "endIndex": 403, + "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" + } + } + }, + { + "startIndex": 402, + "endIndex": 403, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.y5c8yds0bxz1": { + "listId": "kix.y5c8yds0bxz1", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 4211800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1691975, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 86, + "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" + } + } + }, + { + "endIndex": 86, + "textRun": { + "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "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" + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 87, + "endIndex": 185, + "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" + } + } + }, + { + "startIndex": 87, + "endIndex": 185, + "textRun": { + "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 68, + "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" + } + } + }, + { + "endIndex": 68, + "textRun": { + "content": "✅ Do you include who the users are, and how you will recruit them?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "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" + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 148, + "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" + } + } + }, + { + "startIndex": 69, + "endIndex": 148, + "textRun": { + "content": "✅ Do you include how you will communicate with your users during your study? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 148, + "endIndex": 149, + "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" + } + } + }, + { + "startIndex": 148, + "endIndex": 149, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 149, + "endIndex": 237, + "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" + } + } + }, + { + "startIndex": 149, + "endIndex": 237, + "textRun": { + "content": "✅ Do you consider any access issues that may prevent you from running your user tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 91, + "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" + } + } + }, + { + "endIndex": 91, + "textRun": { + "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 92, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 92, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 92, + "endIndex": 214, + "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" + } + } + }, + { + "startIndex": 92, + "endIndex": 214, + "textRun": { + "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "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" + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 215, + "endIndex": 323, + "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" + } + } + }, + { + "startIndex": 215, + "endIndex": 323, + "textRun": { + "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 323, + "endIndex": 324, + "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" + } + } + }, + { + "startIndex": 323, + "endIndex": 324, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 324, + "endIndex": 475, + "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" + } + } + }, + { + "startIndex": 324, + "endIndex": 475, + "textRun": { + "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 475, + "endIndex": 476, + "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" + } + } + }, + { + "startIndex": 475, + "endIndex": 476, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 476, + "endIndex": 547, + "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" + } + } + }, + { + "startIndex": 476, + "endIndex": 547, + "textRun": { + "content": "✅ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 205, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 205, + "textRun": { + "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 205, + "endIndex": 206, + "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" + } + } + }, + { + "startIndex": 205, + "endIndex": 206, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 206, + "endIndex": 303, + "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" + } + } + }, + { + "startIndex": 206, + "endIndex": 303, + "textRun": { + "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1691975, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g23729163056_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 34, + "textRun": { + "content": "Mysore Template: User Testing Plan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g23729163056_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 15, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 14, + "textRun": { + "content": "Grace & Jordan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 14, + "endIndex": 15, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g23729163056_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g23729163056_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g23729163056_0_9", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g23729163056_0_9" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g2211d100668_0_0", + "pageElements": [ + { + "objectId": "g2211d100668_0_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.4067, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 72, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 71, + "textRun": { + "content": "Takeaways from New Prototype Testing with Gobi + Haoqi", + "style": {} + } + }, + { + "startIndex": 71, + "endIndex": 72, + "textRun": { + "content": "\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g2211d100668_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g2211d100668_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g2211d100668_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g2211d100668_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g2211d100668_0_4", + "pageElements": [ + { + "objectId": "g2211d100668_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 492100, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 492100, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 44, + "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" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "Goal 1:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 7, + "endIndex": 44, + "textRun": { + "content": " Test usability of the new prototype\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 44, + "endIndex": 45, + "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" + } + } + }, + { + "startIndex": 44, + "endIndex": 45, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 45, + "endIndex": 159, + "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" + } + } + }, + { + "startIndex": 45, + "endIndex": 52, + "textRun": { + "content": "Goal 2:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 52, + "endIndex": 159, + "textRun": { + "content": " Test whether the interface design communicates the workflow in our conceptual approach clearly to the use\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 15, + "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" + } + } + }, + { + "endIndex": 15, + "textRun": { + "content": "Haoqi and Gobi\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 52, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.8ww6c5a3fgfx", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "endIndex": 52, + "textRun": { + "content": "Very clear understanding of P-RC-C-S, esp with Gobi\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 52, + "endIndex": 157, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.8ww6c5a3fgfx", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 52, + "endIndex": 157, + "textRun": { + "content": "“Reflection on causes is really rich, gave me a way to elicit and model all my expert mentor knowledge.”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 157, + "endIndex": 227, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.8ww6c5a3fgfx", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 157, + "endIndex": 227, + "textRun": { + "content": "“Really nice to be able to share this knowledge with other SIG heads”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 227, + "endIndex": 293, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.8ww6c5a3fgfx", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 227, + "endIndex": 293, + "textRun": { + "content": "“Super nice to have adata in front of me and see what’s happening\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 293, + "endIndex": 294, + "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" + } + } + }, + { + "startIndex": 293, + "endIndex": 294, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 294, + "endIndex": 419, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.x72cxwiovfm5", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 294, + "endIndex": 419, + "textRun": { + "content": "“Worried that this is hard to use potentially, but even having this there is helpful because they can see what they can try”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.8ww6c5a3fgfx": { + "listId": "kix.8ww6c5a3fgfx", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.x72cxwiovfm5": { + "listId": "kix.x72cxwiovfm5", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.zhns8wi1swkn": { + "listId": "kix.zhns8wi1swkn", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Usability Issues:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 63, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.u3oiz7nqzi4", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 18, + "endIndex": 63, + "textRun": { + "content": "The ones from Gobi’s study are already fixed\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 63, + "endIndex": 181, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.u3oiz7nqzi4", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 63, + "endIndex": 181, + "textRun": { + "content": "Big words, scope blocks, lack of brainstorming + scratch space, create text, next button, add button, general context\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 181, + "endIndex": 224, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.u3oiz7nqzi4", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 181, + "endIndex": 224, + "textRun": { + "content": "Context tag -> no idea what they look like\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 224, + "endIndex": 321, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.u3oiz7nqzi4", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 224, + "endIndex": 321, + "textRun": { + "content": "Strategy blockly - too empty, lack of guidance, can’t see potential causes when writing strategy\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 321, + "endIndex": 322, + "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" + } + } + }, + { + "startIndex": 321, + "endIndex": 322, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 322, + "endIndex": 341, + "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" + } + } + }, + { + "startIndex": 322, + "endIndex": 341, + "textRun": { + "content": "Things to look at:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 341, + "endIndex": 373, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.to0lkbo83bwp", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 341, + "endIndex": 373, + "textRun": { + "content": "Are we oversimplifying? -> pass\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 373, + "endIndex": 542, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.to0lkbo83bwp", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 373, + "endIndex": 542, + "textRun": { + "content": "Coming up with potential causes was very hard, even for Haoqi, requires a lot of recall for a lot of issues -> for scripting study, multiple mentors/iterative scripting\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 542, + "endIndex": 637, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.to0lkbo83bwp", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 542, + "endIndex": 637, + "textRun": { + "content": "Should have context info that is more specific to the issue at head e.g. stuff in the detector\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 637, + "endIndex": 876, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.to0lkbo83bwp", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 637, + "endIndex": 876, + "textRun": { + "content": "How can the script fit in the mentor’s workflow? Can’t automatically diagnose RC, so how should we approach this? Discuss in-person, ask over slack, how do we provide/support flexibilities like these? Interface for interacting with script\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 876, + "endIndex": 1018, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.to0lkbo83bwp", + "glyph": "5.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 876, + "endIndex": 1018, + "textRun": { + "content": "Strategy part -> over-scripting? Text strategies suffice? -> what are some simple affordances mentors can use with students? => user’s choice\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1018, + "endIndex": 1036, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.to0lkbo83bwp", + "glyph": "6.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 1018, + "endIndex": 1036, + "textRun": { + "content": "Detector accuracy\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1036, + "endIndex": 1223, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.to0lkbo83bwp", + "glyph": "7.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 1036, + "endIndex": 1223, + "textRun": { + "content": "Have students look at the root causes too? -> student reflection is another additional context indo -> help mentors understand what system can’t observe? -> good practice for student too\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.ordpe99folbm": { + "listId": "kix.ordpe99folbm", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.to0lkbo83bwp": { + "listId": "kix.to0lkbo83bwp", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.u3oiz7nqzi4": { + "listId": "kix.u3oiz7nqzi4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 119, + "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" + } + } + }, + { + "endIndex": 119, + "textRun": { + "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 119, + "endIndex": 120, + "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" + } + } + }, + { + "startIndex": 119, + "endIndex": 120, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 90, + "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" + } + } + }, + { + "endIndex": 90, + "textRun": { + "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "textRun": { + "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 103, + "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" + } + } + }, + { + "endIndex": 103, + "textRun": { + "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "textRun": { + "content": "✅ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "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" + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "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" + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "textRun": { + "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "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" + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 253, + "endIndex": 459, + "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" + } + } + }, + { + "startIndex": 253, + "endIndex": 459, + "textRun": { + "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 459, + "endIndex": 460, + "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" + } + } + }, + { + "startIndex": 459, + "endIndex": 460, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 460, + "endIndex": 530, + "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" + } + } + }, + { + "startIndex": 460, + "endIndex": 530, + "textRun": { + "content": "❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 106, + "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" + } + } + }, + { + "endIndex": 106, + "textRun": { + "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "textRun": { + "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1344975, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1858275, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 3654750, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g2211d100668_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g2211d100668_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 8, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "[Grace]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g2211d100668_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g2211d100668_0_9", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g2211d100668_0_10", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g2211d100668_0_10" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22ca7b496e1_0_0", + "pageElements": [ + { + "objectId": "g22ca7b496e1_0_1", + "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": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "textRun": { + "content": "Study Design \n", + "style": {} + } + }, + { + "startIndex": 31, + "endIndex": 60, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 31, + "endIndex": 60, + "textRun": { + "content": "SP’23 Root Cause test Week 3\n", + "style": { + "bold": true, + "fontSize": { + "magnitude": 28, + "unit": "PT" + } + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22ca7b496e1_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22ca7b496e1_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22ca7b496e1_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22ca7b496e1_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22ca7b496e1_0_4", + "pageElements": [ + { + "objectId": "g22ca7b496e1_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 565625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 22, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "Goals of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 165, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 164, + "textRun": { + "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 65, + "textRun": { + "content": "Who will you test your prototype with? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 65, + "endIndex": 66, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "textRun": { + "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "High-Level Expected Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "textRun": { + "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 565625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 4211800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 28, + "textRun": { + "content": "Design Argument: MORE WHY?\n", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 29, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 29, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 269, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 31, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 269, + "textRun": { + "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 269, + "endIndex": 270, + "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" + } + } + }, + { + "startIndex": 269, + "endIndex": 270, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 270, + "endIndex": 460, + "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" + } + } + }, + { + "startIndex": 270, + "endIndex": 272, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 272, + "endIndex": 460, + "textRun": { + "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 460, + "endIndex": 461, + "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" + } + } + }, + { + "startIndex": 460, + "endIndex": 461, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 461, + "endIndex": 462, + "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" + } + } + }, + { + "startIndex": 461, + "endIndex": 462, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 462, + "endIndex": 683, + "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" + } + } + }, + { + "startIndex": 462, + "endIndex": 464, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 464, + "endIndex": 683, + "textRun": { + "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 683, + "endIndex": 966, + "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" + } + } + }, + { + "startIndex": 683, + "endIndex": 966, + "textRun": { + "content": "If the mentors had more root causes thinking/more accurate root cause. Wrote better root causes in script -> how does this help? Journey map of mentor’s mind in sig meeting-like process, recall? What is accuracy? Quantity? Most likely root causes vs less likely root causes recalled\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 966, + "endIndex": 967, + "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" + } + } + }, + { + "startIndex": 966, + "endIndex": 967, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 967, + "endIndex": 1226, + "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" + } + } + }, + { + "startIndex": 967, + "endIndex": 969, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 969, + "endIndex": 1226, + "textRun": { + "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1226, + "endIndex": 1227, + "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" + } + } + }, + { + "startIndex": 1226, + "endIndex": 1227, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1227, + "endIndex": 1436, + "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" + } + } + }, + { + "startIndex": 1227, + "endIndex": 1436, + "textRun": { + "content": "-> With a fuller understanding of why the student is struggling, mentors can help mentees achieve better long-term growth through tailored strategies. Strategy suggestions help mentors teach more effectively.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1436, + "endIndex": 1437, + "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" + } + } + }, + { + "startIndex": 1436, + "endIndex": 1437, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1437, + "endIndex": 1448, + "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" + } + } + }, + { + "startIndex": 1437, + "endIndex": 1448, + "textRun": { + "content": "Mini-test:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1448, + "endIndex": 1461, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.i8bz6yml34lx", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 1448, + "endIndex": 1461, + "textRun": { + "content": "Context test\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1461, + "endIndex": 1674, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.i8bz6yml34lx", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 1461, + "endIndex": 1674, + "textRun": { + "content": "The effectiveness of script relies on mentor’s ability to come up with root causes -> research how we can help mentors come up with root causes -> if root cause inexperienced mentors can come up with root causes\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1674, + "endIndex": 1693, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.i8bz6yml34lx", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 1674, + "endIndex": 1693, + "textRun": { + "content": "Test new prototype\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.i8bz6yml34lx": { + "listId": "kix.i8bz6yml34lx", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.txqi0c27zz40": { + "listId": "kix.txqi0c27zz40", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ynplpxhcweip": { + "listId": "kix.ynplpxhcweip", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 42, + "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" + } + } + }, + { + "endIndex": 13, + "textRun": { + "content": "Participants:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 42, + "textRun": { + "content": " 4 mentors and their mentees\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 42, + "endIndex": 43, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 42, + "endIndex": 43, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 43, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 43, + "endIndex": 55, + "textRun": { + "content": "Recruitment:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 55, + "endIndex": 86, + "textRun": { + "content": " Within DTR, already recruited\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 87, + "endIndex": 103, + "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" + } + } + }, + { + "startIndex": 87, + "endIndex": 103, + "textRun": { + "content": "Communication: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 123, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 123, + "textRun": { + "content": "Slack and in-person\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "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" + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 124, + "endIndex": 186, + "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" + } + } + }, + { + "startIndex": 124, + "endIndex": 138, + "textRun": { + "content": "Access issues:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 138, + "endIndex": 186, + "textRun": { + "content": " We may need temporary access to Slack channels\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 186, + "endIndex": 187, + "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" + } + } + }, + { + "startIndex": 186, + "endIndex": 187, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 187, + "endIndex": 188, + "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" + } + } + }, + { + "startIndex": 187, + "endIndex": 188, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 188, + "endIndex": 218, + "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" + } + } + }, + { + "startIndex": 188, + "endIndex": 218, + "textRun": { + "content": "For Gobi and HQ: start Week 5\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 218, + "endIndex": 251, + "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" + } + } + }, + { + "startIndex": 218, + "endIndex": 251, + "textRun": { + "content": "For Kapil and Ryan: start Week 6\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 251, + "endIndex": 273, + "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" + } + } + }, + { + "startIndex": 251, + "endIndex": 273, + "textRun": { + "content": "Run study till Week 9\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.5et11dq4lm66": { + "listId": "kix.5et11dq4lm66", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.vzvz2huetn83": { + "listId": "kix.vzvz2huetn83", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Scripting Study: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 28, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "1.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 18, + "endIndex": 28, + "textRun": { + "content": "Scripting\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 262, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 262, + "textRun": { + "content": "At the beginning of each week, meet with mentors for 30 minutes to write scripts. They can choose whatever problems they want help with, we will provide some examples that have template scripts that they can adapt for their own use. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 262, + "endIndex": 396, + "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" + } + } + }, + { + "startIndex": 262, + "endIndex": 396, + "textRun": { + "content": "In the first two meeting, we will help them with scripting. Help them with script choice to make sure the script is likely to happen.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 396, + "endIndex": 397, + "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" + } + } + }, + { + "startIndex": 396, + "endIndex": 397, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 397, + "endIndex": 407, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "2.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 397, + "endIndex": 407, + "textRun": { + "content": "Interview\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 407, + "endIndex": 499, + "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" + } + } + }, + { + "startIndex": 407, + "endIndex": 499, + "textRun": { + "content": "Ask mentors how the scripting process went for them, and why they chose a specific problem.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 499, + "endIndex": 500, + "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" + } + } + }, + { + "startIndex": 499, + "endIndex": 500, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 500, + "endIndex": 501, + "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" + } + } + }, + { + "startIndex": 500, + "endIndex": 501, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 501, + "endIndex": 520, + "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" + } + } + }, + { + "startIndex": 501, + "endIndex": 520, + "textRun": { + "content": "Deployment Study: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 520, + "endIndex": 571, + "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" + } + } + }, + { + "startIndex": 520, + "endIndex": 571, + "textRun": { + "content": "If we can get good scripts + root causes thinking…\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 571, + "endIndex": 583, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 571, + "endIndex": 583, + "textRun": { + "content": "Script runs\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 583, + "endIndex": 641, + "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" + } + } + }, + { + "startIndex": 583, + "endIndex": 641, + "textRun": { + "content": "Their script will run and keep running until it triggers.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 641, + "endIndex": 853, + "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" + } + } + }, + { + "startIndex": 641, + "endIndex": 852, + "textRun": { + "content": "When script triggers, the mentor does root cause analysis and deploy strategies as they have scripted. In the process, they might choose to seek out context information or ask their mentees for more information.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 852, + "endIndex": 853, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 853, + "endIndex": 854, + "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" + } + } + }, + { + "startIndex": 853, + "endIndex": 854, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 854, + "endIndex": 855, + "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" + } + } + }, + { + "startIndex": 854, + "endIndex": 855, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 855, + "endIndex": 876, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 855, + "endIndex": 876, + "textRun": { + "content": "Post-study Interview\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 876, + "endIndex": 1030, + "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" + } + } + }, + { + "startIndex": 876, + "endIndex": 1030, + "textRun": { + "content": "After a script has been triggered and dealt with, we will interview mentors and mentees about how the script has influenced their mentoring interactions.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1030, + "endIndex": 1031, + "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" + } + } + }, + { + "startIndex": 1030, + "endIndex": 1031, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1031, + "endIndex": 1124, + "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" + } + } + }, + { + "startIndex": 1031, + "endIndex": 1124, + "textRun": { + "content": "Ask mentees about their perspective on why they struggled and compare to mentor’s diagnosis.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.50iaokq8q7xd": { + "listId": "kix.50iaokq8q7xd", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.f2d3x4uv8p06": { + "listId": "kix.f2d3x4uv8p06", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ixxpl7mibqvo": { + "listId": "kix.ixxpl7mibqvo", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 13, + "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" + } + } + }, + { + "endIndex": 13, + "textRun": { + "content": "Translation:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 57, + "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" + } + } + }, + { + "startIndex": 13, + "endIndex": 14, + "textRun": { + "content": "-", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 14, + "endIndex": 57, + "textRun": { + "content": "> mentor are able to create working script\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 57, + "endIndex": 128, + "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" + } + } + }, + { + "startIndex": 57, + "endIndex": 128, + "textRun": { + "content": "-> “it was easy to write a script that reflected how I want to mentor”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 128, + "endIndex": 190, + "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" + } + } + }, + { + "startIndex": 128, + "endIndex": 190, + "textRun": { + "content": "-> “I like the structure of the script. It was really clear…”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 190, + "endIndex": 191, + "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" + } + } + }, + { + "startIndex": 190, + "endIndex": 191, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 191, + "endIndex": 204, + "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" + } + } + }, + { + "startIndex": 191, + "endIndex": 204, + "textRun": { + "content": "Root Causes:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 204, + "endIndex": 349, + "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" + } + } + }, + { + "startIndex": 204, + "endIndex": 349, + "textRun": { + "content": "-> “The structure of the script matches my way of thinking about mentoring. It provided a clear structure to approach understanding the problem“\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 349, + "endIndex": 431, + "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" + } + } + }, + { + "startIndex": 349, + "endIndex": 431, + "textRun": { + "content": "-> Mentors are able to come up with root causes quicker and more comprehensively.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 431, + "endIndex": 456, + "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" + } + } + }, + { + "startIndex": 431, + "endIndex": 456, + "textRun": { + "content": "-> Observations such as:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 456, + "endIndex": 562, + "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" + } + } + }, + { + "startIndex": 456, + "endIndex": 562, + "textRun": { + "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 562, + "endIndex": 656, + "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" + } + } + }, + { + "startIndex": 562, + "endIndex": 656, + "textRun": { + "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 656, + "endIndex": 657, + "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" + } + } + }, + { + "startIndex": 656, + "endIndex": 657, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 657, + "endIndex": 666, + "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" + } + } + }, + { + "startIndex": 657, + "endIndex": 666, + "textRun": { + "content": "Context:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 666, + "endIndex": 748, + "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" + } + } + }, + { + "startIndex": 666, + "endIndex": 748, + "textRun": { + "content": "-> Mentors are able to CORRECTLY diagnose the reason why students are struggling.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 748, + "endIndex": 749, + "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" + } + } + }, + { + "startIndex": 748, + "endIndex": 749, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 749, + "endIndex": 750, + "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" + } + } + }, + { + "startIndex": 749, + "endIndex": 750, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.y5c8yds0bxz1": { + "listId": "kix.y5c8yds0bxz1", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 4211800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1691975, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 86, + "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" + } + } + }, + { + "endIndex": 86, + "textRun": { + "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "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" + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 87, + "endIndex": 185, + "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" + } + } + }, + { + "startIndex": 87, + "endIndex": 185, + "textRun": { + "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 68, + "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" + } + } + }, + { + "endIndex": 68, + "textRun": { + "content": "✅ Do you include who the users are, and how you will recruit them?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "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" + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 148, + "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" + } + } + }, + { + "startIndex": 69, + "endIndex": 148, + "textRun": { + "content": "✅ Do you include how you will communicate with your users during your study? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 148, + "endIndex": 149, + "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" + } + } + }, + { + "startIndex": 148, + "endIndex": 149, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 149, + "endIndex": 237, + "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" + } + } + }, + { + "startIndex": 149, + "endIndex": 237, + "textRun": { + "content": "✅ Do you consider any access issues that may prevent you from running your user tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 91, + "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" + } + } + }, + { + "endIndex": 91, + "textRun": { + "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 92, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 92, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 92, + "endIndex": 214, + "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" + } + } + }, + { + "startIndex": 92, + "endIndex": 214, + "textRun": { + "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "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" + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 215, + "endIndex": 323, + "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" + } + } + }, + { + "startIndex": 215, + "endIndex": 323, + "textRun": { + "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 323, + "endIndex": 324, + "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" + } + } + }, + { + "startIndex": 323, + "endIndex": 324, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 324, + "endIndex": 475, + "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" + } + } + }, + { + "startIndex": 324, + "endIndex": 475, + "textRun": { + "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 475, + "endIndex": 476, + "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" + } + } + }, + { + "startIndex": 475, + "endIndex": 476, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 476, + "endIndex": 547, + "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" + } + } + }, + { + "startIndex": 476, + "endIndex": 547, + "textRun": { + "content": "✅ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 205, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 205, + "textRun": { + "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 205, + "endIndex": 206, + "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" + } + } + }, + { + "startIndex": 205, + "endIndex": 206, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 206, + "endIndex": 303, + "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" + } + } + }, + { + "startIndex": 206, + "endIndex": 303, + "textRun": { + "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1691975, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g22ca7b496e1_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 34, + "textRun": { + "content": "Mysore Template: User Testing Plan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g22ca7b496e1_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 15, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 14, + "textRun": { + "content": "Grace & Jordan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 14, + "endIndex": 15, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22ca7b496e1_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22ca7b496e1_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22ca7b496e1_0_9", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22ca7b496e1_0_9" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g219b2f18f42_1_0", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.4067, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 59, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 58, + "textRun": { + "content": "Takeaways from RC User Testing(with Ryan)", + "style": {} + } + }, + { + "startIndex": 58, + "endIndex": 59, + "textRun": { + "content": "\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g219b2f18f42_1_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g219b2f18f42_1_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g219b2f18f42_1_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g219b2f18f42_1_34", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_35", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 97, + "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" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "Goal 1:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 7, + "endIndex": 97, + "textRun": { + "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 98, + "endIndex": 147, + "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" + } + } + }, + { + "startIndex": 98, + "endIndex": 147, + "textRun": { + "content": "If it helps, we can continue with this workflow.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 147, + "endIndex": 237, + "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" + } + } + }, + { + "startIndex": 147, + "endIndex": 237, + "textRun": { + "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 237, + "endIndex": 238, + "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" + } + } + }, + { + "startIndex": 237, + "endIndex": 238, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 238, + "endIndex": 239, + "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" + } + } + }, + { + "startIndex": 238, + "endIndex": 239, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 239, + "endIndex": 305, + "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" + } + } + }, + { + "startIndex": 239, + "endIndex": 246, + "textRun": { + "content": "Goal 2:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 246, + "endIndex": 305, + "textRun": { + "content": " See what obstacles mentors face in diagnosing root causes\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 305, + "endIndex": 306, + "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" + } + } + }, + { + "startIndex": 305, + "endIndex": 306, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 306, + "endIndex": 471, + "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" + } + } + }, + { + "startIndex": 306, + "endIndex": 471, + "textRun": { + "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 4, + "textRun": { + "content": "Yes\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "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" + } + } + }, + { + "startIndex": 4, + "endIndex": 5, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 5, + "endIndex": 96, + "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" + } + } + }, + { + "startIndex": 5, + "endIndex": 96, + "textRun": { + "content": "One of the mentees couldn’t come to the SIG meeting, but we tested with two other mentees.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 182, + "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" + } + } + }, + { + "endIndex": 182, + "textRun": { + "content": "1. For under-committed, the mentor was able to diagnose the root cause very quickly with direct, in-person communication. (might be due to it’s a relatively straightforward problem)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 182, + "endIndex": 183, + "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" + } + } + }, + { + "startIndex": 182, + "endIndex": 183, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 183, + "endIndex": 477, + "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" + } + } + }, + { + "startIndex": 183, + "endIndex": 477, + "textRun": { + "content": "2. The mentor enacted a very clear workflow going from the under-committed signal, to diagnosing the root cause (handwavy), and then to strategy (a mini session on the importance of sprint log as shared language that provides the mentor with a sense of their progress + how to use sprint log).\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 477, + "endIndex": 478, + "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" + } + } + }, + { + "startIndex": 477, + "endIndex": 478, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 478, + "endIndex": 746, + "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" + } + } + }, + { + "startIndex": 478, + "endIndex": 746, + "textRun": { + "content": "3. This process was peripheral but helpful. The signal we choose didn’t match his plan for the SIG meeting. It was not the most important thing he wanted to focus, but the he thought that “This talk about process was helpful to help me get a sense of their progress.”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 746, + "endIndex": 747, + "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" + } + } + }, + { + "startIndex": 746, + "endIndex": 747, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.zhns8wi1swkn": { + "listId": "kix.zhns8wi1swkn", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 84, + "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" + } + } + }, + { + "endIndex": 84, + "textRun": { + "content": "We didn’t get to observe how root cause analysis can be useful to a mentor because:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 84, + "endIndex": 153, + "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" + } + } + }, + { + "startIndex": 84, + "endIndex": 153, + "textRun": { + "content": "1. Under-committed: too surface-level, didn’t have a deep root cause\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 153, + "endIndex": 301, + "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" + } + } + }, + { + "startIndex": 153, + "endIndex": 301, + "textRun": { + "content": "2. Diagnosis mostly through direct, in-person communication, very quick for diagnosis -> didn’t get to observe obstacles (for in-person and online)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 301, + "endIndex": 434, + "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" + } + } + }, + { + "startIndex": 301, + "endIndex": 434, + "textRun": { + "content": "3. Signals had too much noise (3 signals observed-1 surface level, 1 false alarm, 1 potentially interesting but didn’t get to test):\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 434, + "endIndex": 435, + "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" + } + } + }, + { + "startIndex": 434, + "endIndex": 435, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.ordpe99folbm": { + "listId": "kix.ordpe99folbm", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 119, + "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" + } + } + }, + { + "endIndex": 119, + "textRun": { + "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 119, + "endIndex": 120, + "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" + } + } + }, + { + "startIndex": 119, + "endIndex": 120, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 90, + "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" + } + } + }, + { + "endIndex": 90, + "textRun": { + "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 195, + "textRun": { + "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 103, + "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" + } + } + }, + { + "endIndex": 103, + "textRun": { + "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 163, + "textRun": { + "content": "✅ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "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" + } + } + }, + { + "startIndex": 163, + "endIndex": 164, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "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" + } + } + }, + { + "startIndex": 164, + "endIndex": 252, + "textRun": { + "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "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" + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 253, + "endIndex": 459, + "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" + } + } + }, + { + "startIndex": 253, + "endIndex": 459, + "textRun": { + "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 459, + "endIndex": 460, + "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" + } + } + }, + { + "startIndex": 459, + "endIndex": 460, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 460, + "endIndex": 530, + "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" + } + } + }, + { + "startIndex": 460, + "endIndex": 530, + "textRun": { + "content": "❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 106, + "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" + } + } + }, + { + "endIndex": 106, + "textRun": { + "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 198, + "textRun": { + "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 198, + "endIndex": 199, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g219b2f18f42_1_36", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g219b2f18f42_1_37", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 8, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "[Grace]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g219b2f18f42_1_40", + "size": { + "width": { + "magnitude": 38400, + "unit": "EMU" + }, + "height": { + "magnitude": 51200, + "unit": "EMU" + } + }, + "transform": { + "shearX": 23.9932, + "shearY": -35.9225, + "translateX": 6961200, + "translateY": 3605575.2874999996, + "unit": "EMU" + }, + "image": { + "contentUrl": "https://lh7-us.googleusercontent.com/m9qWC4WPZhzXaFtcIuYDagpvv-ZVBuxW0RCZYthGohv0LSXEBbzn5HBHFCX_DwLP-Yuvb8gyBNOiP7DBdASnj37J2Tea0z-kgQpqq9XapplkJrW5sz30PDM1nGoGJTBcqOeOI-Dy4EnmQJVzu-5GXOBBBoMTeus2bMI=s2048", + "imageProperties": { + "cropProperties": { + "leftOffset": 0.1336741, + "topOffset": 0.30438057, + "bottomOffset": 0.1169492 + }, + "outline": { + "outlineFill": { + "solidFill": { + "color": { + "themeColor": "DARK2" + }, + "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" + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g219b2f18f42_1_34:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_38", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g219b2f18f42_1_39", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g219b2f18f42_1_39" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g219b2f18f42_1_41", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_42", + "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": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "textRun": { + "content": "Study Design \n", + "style": {} + } + }, + { + "startIndex": 31, + "endIndex": 61, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 31, + "endIndex": 61, + "textRun": { + "content": "SP’23 Root Cause test Week 4 \n", + "style": { + "bold": true, + "fontSize": { + "magnitude": 28, + "unit": "PT" + } + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g219b2f18f42_1_41:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_43", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g219b2f18f42_1_44", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g219b2f18f42_1_44" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g219b2f18f42_1_45", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_46", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 565625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 22, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "Goals of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 165, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 164, + "textRun": { + "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 40, + "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" + } + } + }, + { + "endIndex": 40, + "textRun": { + "content": "High-Level Findings From Previous Study\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 40, + "endIndex": 191, + "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" + } + } + }, + { + "startIndex": 40, + "endIndex": 190, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 190, + "endIndex": 191, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 60, + "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" + } + } + }, + { + "endIndex": 60, + "textRun": { + "content": "How would you address these issues from the last user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "textRun": { + "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "High-Level Expected Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "textRun": { + "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 565625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 4211800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 97, + "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" + } + } + }, + { + "endIndex": 7, + "textRun": { + "content": "Goal 1:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 7, + "endIndex": 97, + "textRun": { + "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 98, + "endIndex": 147, + "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" + } + } + }, + { + "startIndex": 98, + "endIndex": 147, + "textRun": { + "content": "If it helps, we can continue with this workflow.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 147, + "endIndex": 237, + "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" + } + } + }, + { + "startIndex": 147, + "endIndex": 237, + "textRun": { + "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 237, + "endIndex": 238, + "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" + } + } + }, + { + "startIndex": 237, + "endIndex": 238, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 238, + "endIndex": 239, + "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" + } + } + }, + { + "startIndex": 238, + "endIndex": 239, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 239, + "endIndex": 305, + "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" + } + } + }, + { + "startIndex": 239, + "endIndex": 246, + "textRun": { + "content": "Goal 2:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 246, + "endIndex": 305, + "textRun": { + "content": " See what obstacles mentors face in diagnosing root causes\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 305, + "endIndex": 306, + "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" + } + } + }, + { + "startIndex": 305, + "endIndex": 306, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 306, + "endIndex": 471, + "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" + } + } + }, + { + "startIndex": 306, + "endIndex": 471, + "textRun": { + "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 471, + "endIndex": 472, + "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" + } + } + }, + { + "startIndex": 471, + "endIndex": 472, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 472, + "endIndex": 513, + "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" + } + } + }, + { + "startIndex": 472, + "endIndex": 512, + "textRun": { + "content": "User Testing Participants same as before", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 512, + "endIndex": 513, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.txqi0c27zz40": { + "listId": "kix.txqi0c27zz40", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ynplpxhcweip": { + "listId": "kix.ynplpxhcweip", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 84, + "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" + } + } + }, + { + "endIndex": 84, + "textRun": { + "content": "We didn’t get to observe how root cause analysis can be useful to a mentor because:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 84, + "endIndex": 153, + "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" + } + } + }, + { + "startIndex": 84, + "endIndex": 153, + "textRun": { + "content": "1. Under-committed: too surface-level, didn’t have a deep root cause\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 153, + "endIndex": 301, + "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" + } + } + }, + { + "startIndex": 153, + "endIndex": 301, + "textRun": { + "content": "2. Diagnosis mostly through direct, in-person communication, very quick for diagnosis -> didn’t get to observe obstacles (for in-person and online)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 301, + "endIndex": 434, + "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" + } + } + }, + { + "startIndex": 301, + "endIndex": 434, + "textRun": { + "content": "3. Signals had too much noise (3 signals observed-1 surface level, 1 false alarm, 1 potentially interesting but didn’t get to test):\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 434, + "endIndex": 435, + "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" + } + } + }, + { + "startIndex": 434, + "endIndex": 435, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ], + "lists": { + "kix.ordpe99folbm": { + "listId": "kix.ordpe99folbm", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 254, + "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" + } + } + }, + { + "endIndex": 254, + "textRun": { + "content": "1. Choose problems related to conceptual understanding that mentors want to focus on during SIG, so that we can observe the influence of root cause analysis throughout the 30 min of SIG, instead of for just 5 minutes when we choose a peripheral problem\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 254, + "endIndex": 307, + "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" + } + } + }, + { + "startIndex": 254, + "endIndex": 307, + "textRun": { + "content": "E.g. misalignment in understanding of riskiest risk?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 307, + "endIndex": 412, + "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" + } + } + }, + { + "startIndex": 307, + "endIndex": 412, + "textRun": { + "content": "Are students updating the part of PRC that they said they will in the planning view of their sprint log?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 412, + "endIndex": 442, + "paragraphMarker": { + "style": { + "lineSpacing": 115, + "alignment": "START", + "indentStart": { + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 412, + "endIndex": 442, + "textRun": { + "content": "Student’s metacognitive goals\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 442, + "endIndex": 443, + "paragraphMarker": { + "style": { + "lineSpacing": 115, + "alignment": "START", + "indentStart": { + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 442, + "endIndex": 443, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 443, + "endIndex": 583, + "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" + } + } + }, + { + "startIndex": 443, + "endIndex": 583, + "textRun": { + "content": "2. Maybe try some online testing as well? Especially because SIG is so short and it makes sense to try to address some issues through slack\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 583, + "endIndex": 584, + "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" + } + } + }, + { + "startIndex": 583, + "endIndex": 584, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 584, + "endIndex": 687, + "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" + } + } + }, + { + "startIndex": 584, + "endIndex": 687, + "textRun": { + "content": "3. Need to minimize noise and uncertainty in detection so we can actually get to root cause analysis. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 687, + "endIndex": 794, + "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" + } + } + }, + { + "startIndex": 687, + "endIndex": 794, + "textRun": { + "content": "a. Make sure mentees are using the tools as they’re meant to do (no separate doc, no “I just forgot” etc.)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 794, + "endIndex": 861, + "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" + } + } + }, + { + "startIndex": 794, + "endIndex": 861, + "textRun": { + "content": "b. Do some manual filtering when needed to get rid of false alarms\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 861, + "endIndex": 878, + "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" + } + } + }, + { + "startIndex": 861, + "endIndex": 878, + "textRun": { + "content": "c. SIGNAL -> RC❌\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 878, + "endIndex": 897, + "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" + } + } + }, + { + "startIndex": 878, + "endIndex": 897, + "textRun": { + "content": " RC -> SIGNAL ✅\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 897, + "endIndex": 898, + "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" + } + } + }, + { + "startIndex": 897, + "endIndex": 898, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 898, + "endIndex": 1082, + "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" + } + } + }, + { + "startIndex": 898, + "endIndex": 1081, + "textRun": { + "content": "4. Information gap between us and other SIGs: don’t know what they’re focusing on rn, what they’re expecting to talk about during SIG -> mentors can take into account when they script", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1081, + "endIndex": 1082, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.e0w7hdxmufea": { + "listId": "kix.e0w7hdxmufea", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.gi4edlhja7vs": { + "listId": "kix.gi4edlhja7vs", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.i900jzkemoqh": { + "listId": "kix.i900jzkemoqh", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 16, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "1.", + "bulletStyle": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "endIndex": 16, + "textRun": { + "content": "Preparation (?)\n", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 16, + "endIndex": 114, + "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" + } + } + }, + { + "startIndex": 16, + "endIndex": 114, + "textRun": { + "content": "Ask mentors to explain the state of the project, what they’re expecting to talk about during SIG.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 114, + "endIndex": 186, + "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" + } + } + }, + { + "startIndex": 114, + "endIndex": 186, + "textRun": { + "content": "Ask mentees for a brief explanation of their progress and deliverables.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 186, + "endIndex": 196, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "2.", + "bulletStyle": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 186, + "endIndex": 196, + "textRun": { + "content": "Setup (?)\n", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 196, + "endIndex": 491, + "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" + } + } + }, + { + "startIndex": 196, + "endIndex": 215, + "textRun": { + "content": "Determine a couple ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 215, + "endIndex": 256, + "textRun": { + "content": "RCs related to conceptual understanding. ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 256, + "endIndex": 350, + "textRun": { + "content": "Read each team’s sprint logs, canvases, and slack channels to look for signals that points to ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 350, + "endIndex": 369, + "textRun": { + "content": "these specific RCs.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 369, + "endIndex": 491, + "textRun": { + "content": ". We will take the signal to three experienced mentors, and ask them to come up with a comprehensive list of root causes \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 491, + "endIndex": 504, + "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" + } + } + }, + { + "startIndex": 491, + "endIndex": 504, + "textRun": { + "content": "+ strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 504, + "endIndex": 505, + "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" + } + } + }, + { + "startIndex": 504, + "endIndex": 505, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 505, + "endIndex": 517, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "3.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 505, + "endIndex": 517, + "textRun": { + "content": "Preparation\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 517, + "endIndex": 610, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.f2d3x4uv8p06", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 517, + "endIndex": 610, + "textRun": { + "content": "Meet with mentor before SIG meeting to show him the signals, the root causes, and strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 610, + "endIndex": 681, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.f2d3x4uv8p06", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 610, + "endIndex": 681, + "textRun": { + "content": "mentor will think about how he’s gonna use this information during SIG\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 681, + "endIndex": 786, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.f2d3x4uv8p06", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 681, + "endIndex": 786, + "textRun": { + "content": "mentor will also examine some context information before SIG to help diagnose the problem if he wants to\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 786, + "endIndex": 787, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 36, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + } + } + }, + { + "startIndex": 786, + "endIndex": 787, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 787, + "endIndex": 798, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "4.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 787, + "endIndex": 798, + "textRun": { + "content": "During SIG\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 798, + "endIndex": 811, + "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" + } + } + }, + { + "startIndex": 798, + "endIndex": 811, + "textRun": { + "content": "mentor will:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 811, + "endIndex": 872, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.ixxpl7mibqvo", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 811, + "endIndex": 872, + "textRun": { + "content": "Discuss this with his mentees to finish diagnose the problem\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 872, + "endIndex": 966, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.ixxpl7mibqvo", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 872, + "endIndex": 966, + "textRun": { + "content": "Enact strategy that they have designed for that root cause (or whatever strategy he sees fit)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 966, + "endIndex": 967, + "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" + } + } + }, + { + "startIndex": 966, + "endIndex": 967, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 967, + "endIndex": 988, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.50iaokq8q7xd", + "glyph": "5.", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "fontSize": { + "magnitude": 8, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 967, + "endIndex": 988, + "textRun": { + "content": "Post-study Interview\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 988, + "endIndex": 1096, + "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" + } + } + }, + { + "startIndex": 988, + "endIndex": 1096, + "textRun": { + "content": "We will interview mentors and mentees about how this framework has influenced their mentoring interactions.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.50iaokq8q7xd": { + "listId": "kix.50iaokq8q7xd", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.f2d3x4uv8p06": { + "listId": "kix.f2d3x4uv8p06", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.ixxpl7mibqvo": { + "listId": "kix.ixxpl7mibqvo", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "RC design argument:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 113, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 113, + "textRun": { + "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 113, + "endIndex": 269, + "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" + } + } + }, + { + "startIndex": 113, + "endIndex": 269, + "textRun": { + "content": " “I didn’t think of xxx as a potential root cause but the list of root causes helped me realize that it’s a possible reason why my mentees are struggling.”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 269, + "endIndex": 294, + "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" + } + } + }, + { + "startIndex": 269, + "endIndex": 294, + "textRun": { + "content": "-> Observations such as:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 294, + "endIndex": 400, + "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" + } + } + }, + { + "startIndex": 294, + "endIndex": 400, + "textRun": { + "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 400, + "endIndex": 401, + "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" + } + } + }, + { + "startIndex": 400, + "endIndex": 401, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 401, + "endIndex": 402, + "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" + } + } + }, + { + "startIndex": 401, + "endIndex": 402, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.y5c8yds0bxz1": { + "listId": "kix.y5c8yds0bxz1", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "themeColor": "LIGHT1" + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 4211800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1691975, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 86, + "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" + } + } + }, + { + "endIndex": 86, + "textRun": { + "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "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" + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 87, + "endIndex": 185, + "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" + } + } + }, + { + "startIndex": 87, + "endIndex": 185, + "textRun": { + "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 91, + "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" + } + } + }, + { + "endIndex": 91, + "textRun": { + "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 91, + "endIndex": 92, + "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" + } + } + }, + { + "startIndex": 91, + "endIndex": 92, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 92, + "endIndex": 214, + "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" + } + } + }, + { + "startIndex": 92, + "endIndex": 214, + "textRun": { + "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "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" + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 215, + "endIndex": 323, + "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" + } + } + }, + { + "startIndex": 215, + "endIndex": 323, + "textRun": { + "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 323, + "endIndex": 324, + "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" + } + } + }, + { + "startIndex": 323, + "endIndex": 324, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 324, + "endIndex": 475, + "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" + } + } + }, + { + "startIndex": 324, + "endIndex": 475, + "textRun": { + "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 475, + "endIndex": 476, + "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" + } + } + }, + { + "startIndex": 475, + "endIndex": 476, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 476, + "endIndex": 547, + "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" + } + } + }, + { + "startIndex": 476, + "endIndex": 547, + "textRun": { + "content": "✅ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 205, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 205, + "textRun": { + "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 205, + "endIndex": 206, + "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" + } + } + }, + { + "startIndex": 205, + "endIndex": 206, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 206, + "endIndex": 303, + "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" + } + } + }, + { + "startIndex": 206, + "endIndex": 303, + "textRun": { + "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1691975, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1707575, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1662900, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1489500, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2576450, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1707575, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g219b2f18f42_1_47", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 34, + "textRun": { + "content": "Mysore Template: User Testing Plan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g219b2f18f42_1_48", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 15, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 14, + "textRun": { + "content": "Grace & Jordan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 14, + "endIndex": 15, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g219b2f18f42_1_51", + "size": { + "width": { + "magnitude": 38400, + "unit": "EMU" + }, + "height": { + "magnitude": 51200, + "unit": "EMU" + } + }, + "transform": { + "shearX": 25.729, + "shearY": -38.5215, + "translateX": 1815650, + "translateY": 4254649.965, + "unit": "EMU" + }, + "image": { + "contentUrl": "https://lh7-us.googleusercontent.com/m9qWC4WPZhzXaFtcIuYDagpvv-ZVBuxW0RCZYthGohv0LSXEBbzn5HBHFCX_DwLP-Yuvb8gyBNOiP7DBdASnj37J2Tea0z-kgQpqq9XapplkJrW5sz30PDM1nGoGJTBcqOeOI-Dy4EnmQJVzu-5GXOBBBoMTeus2bMI=s2048", + "imageProperties": { + "cropProperties": { + "leftOffset": 0.1336741, + "topOffset": 0.30438057, + "bottomOffset": 0.1169492 + }, + "outline": { + "outlineFill": { + "solidFill": { + "color": { + "themeColor": "DARK2" + }, + "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" + } + } + } + }, + { + "objectId": "g219b2f18f42_1_52", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.6979, + "scaleY": 0.1847, + "translateX": 2756525, + "translateY": -49925, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 51, + "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" + } + } + }, + { + "endIndex": 51, + "textRun": { + "content": "SIGNAL with RC related to conceptual understanding\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1 + } + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 51, + "endIndex": 81, + "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" + } + } + }, + { + "startIndex": 51, + "endIndex": 81, + "textRun": { + "content": "Filter out noise in detection\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1 + } + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "SHAPE_AUTOFIT", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g219b2f18f42_1_45:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_49", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g219b2f18f42_1_50", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g219b2f18f42_1_50" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g219b2f18f42_1_53", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_54", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 517800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 13, + "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" + } + } + }, + { + "endIndex": 12, + "textRun": { + "content": "User classes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 12, + "endIndex": 13, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 71, + "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" + } + } + }, + { + "startIndex": 13, + "endIndex": 70, + "textRun": { + "content": "Who are your users? At a high-level, what are they doing?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 70, + "endIndex": 71, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 23, + "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" + } + } + }, + { + "endIndex": 22, + "textRun": { + "content": "Users’ needs and goals", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 23, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 84, + "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" + } + } + }, + { + "startIndex": 23, + "endIndex": 83, + "textRun": { + "content": "What are the high-level needs and goals for each user class?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 83, + "endIndex": 84, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Current solutions\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 126, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 125, + "textRun": { + "content": "What existing solutions do users have to achieve their goals? (note: these need not be technical solutions)", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 125, + "endIndex": 126, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 83, + "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" + } + } + }, + { + "endIndex": 39, + "textRun": { + "content": "Users’ obstacles to meeting their goals", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 39, + "endIndex": 40, + "textRun": { + "content": "\u000b", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 40, + "endIndex": 82, + "textRun": { + "content": "Why are users not able to meet their goal?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 82, + "endIndex": 83, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Problem statement\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 138, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 137, + "textRun": { + "content": "Briefly state the problems that your project will aim to solve (but not a solution yet!), using your previous responses", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 137, + "endIndex": 138, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 517800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2785400, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 13, + "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" + } + } + }, + { + "endIndex": 11, + "textRun": { + "content": "User class:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 11, + "endIndex": 13, + "textRun": { + "content": " \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 365, + "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" + } + } + }, + { + "startIndex": 13, + "endIndex": 365, + "textRun": { + "content": "Mentors and mentees in networked work environments working to solve complex, ill-structured problems that have vaguely structured goals and constraints, and often multiple solutions. Working on these problems involves continually planning and re-planning around changing needs and constraints, often soliciting support from others in the organization.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 365, + "endIndex": 366, + "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" + } + } + }, + { + "startIndex": 365, + "endIndex": 366, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 366, + "endIndex": 389, + "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" + } + } + }, + { + "startIndex": 366, + "endIndex": 389, + "textRun": { + "content": "User Characteristics: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 389, + "endIndex": 586, + "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" + } + } + }, + { + "startIndex": 389, + "endIndex": 586, + "textRun": { + "content": "Mentors possess expertise in the organization’s area of work, various resources in the organization, effective work practices, as well as addressing problems that commonly arise in the workspace. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 44, + "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" + } + } + }, + { + "endIndex": 44, + "textRun": { + "content": "Mentors want to utilize their expertise to:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 44, + "endIndex": 83, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.pybpe9m23two", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 44, + "endIndex": 83, + "textRun": { + "content": "Know when their mentees are struggling\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 83, + "endIndex": 127, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.pybpe9m23two", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 83, + "endIndex": 127, + "textRun": { + "content": "Understand why their mentees are struggling\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 127, + "endIndex": 213, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.pybpe9m23two", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 127, + "endIndex": 213, + "textRun": { + "content": "Provide tailored strategy to help their mentees overcome what they’re struggling with\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 213, + "endIndex": 296, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.pybpe9m23two", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 213, + "endIndex": 296, + "textRun": { + "content": "Help them become better learners without spending an overwhelming amount of time. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 296, + "endIndex": 297, + "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" + } + } + }, + { + "startIndex": 296, + "endIndex": 297, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 297, + "endIndex": 512, + "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" + } + } + }, + { + "startIndex": 297, + "endIndex": 512, + "textRun": { + "content": "When tackling complex tasks, mentees often encounter problems that require support from others because they do not have the resources or skills to address the work needs themselves. When this happens, they want to:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 512, + "endIndex": 621, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.z71lbhkwuvo3", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 512, + "endIndex": 621, + "textRun": { + "content": "Utilize the resources in their work network such as venues, people, and tools to solve their problem at hand\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 621, + "endIndex": 777, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.z71lbhkwuvo3", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 621, + "endIndex": 777, + "textRun": { + "content": "Learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 777, + "endIndex": 833, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.z71lbhkwuvo3", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 7, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 777, + "endIndex": 833, + "textRun": { + "content": "Do so in a way which is more sustainable and enjoyable.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 833, + "endIndex": 834, + "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" + } + } + }, + { + "startIndex": 833, + "endIndex": 834, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 834, + "endIndex": 835, + "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" + } + } + }, + { + "startIndex": 834, + "endIndex": 835, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.pybpe9m23two": { + "listId": "kix.pybpe9m23two", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.z71lbhkwuvo3": { + "listId": "kix.z71lbhkwuvo3", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 264, + "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" + } + } + }, + { + "endIndex": 2, + "textRun": { + "content": "1.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2, + "endIndex": 3, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 3, + "endIndex": 31, + "textRun": { + "content": "Online/offline communication", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 264, + "textRun": { + "content": ": mentor contacts mentees through professional messaging platforms such as Slack, email, or meet with mentees in person to discuss their struggles. Mentees can also contact mentors to ask questions and get help when they are stuck. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 264, + "endIndex": 265, + "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" + } + } + }, + { + "startIndex": 264, + "endIndex": 265, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 265, + "endIndex": 293, + "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" + } + } + }, + { + "startIndex": 265, + "endIndex": 267, + "textRun": { + "content": "2.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 267, + "endIndex": 268, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 268, + "endIndex": 274, + "textRun": { + "content": "Mentor", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 274, + "endIndex": 275, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 275, + "endIndex": 291, + "textRun": { + "content": "Manually Monitor", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 291, + "endIndex": 293, + "textRun": { + "content": ":\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 293, + "endIndex": 435, + "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" + } + } + }, + { + "startIndex": 293, + "endIndex": 435, + "textRun": { + "content": "With workspaces becoming increasingly digitized, mentor can manually check resources and notify students when they see ineffective strategies\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 435, + "endIndex": 436, + "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" + } + } + }, + { + "startIndex": 435, + "endIndex": 436, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 436, + "endIndex": 467, + "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" + } + } + }, + { + "startIndex": 436, + "endIndex": 438, + "textRun": { + "content": "3.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 438, + "endIndex": 439, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 439, + "endIndex": 465, + "textRun": { + "content": "Workspace automation tools", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 465, + "endIndex": 467, + "textRun": { + "content": ":\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 467, + "endIndex": 586, + "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" + } + } + }, + { + "startIndex": 467, + "endIndex": 586, + "textRun": { + "content": "Mentor can use workspace automation tools such as Slack and Zapier to detect work needs and facilitate work processes \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 586, + "endIndex": 587, + "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" + } + } + }, + { + "startIndex": 586, + "endIndex": 587, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 587, + "endIndex": 613, + "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" + } + } + }, + { + "startIndex": 587, + "endIndex": 589, + "textRun": { + "content": "4.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 0.6 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 589, + "endIndex": 590, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 590, + "endIndex": 613, + "textRun": { + "content": "Orchestration Scripts:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 613, + "endIndex": 728, + "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" + } + } + }, + { + "startIndex": 613, + "endIndex": 728, + "textRun": { + "content": "Mentors can use the OS language to write scripts that surface support strategies at appropriate times and settings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 728, + "endIndex": 729, + "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" + } + } + }, + { + "startIndex": 728, + "endIndex": 729, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 729, + "endIndex": 730, + "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" + } + } + }, + { + "startIndex": 729, + "endIndex": 730, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.j2f6lbesv3dp": { + "listId": "kix.j2f6lbesv3dp", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.lrf6l3cv5yu7": { + "listId": "kix.lrf6l3cv5yu7", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 2, + "textRun": { + "content": "1.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2, + "endIndex": 27, + "textRun": { + "content": " Mentor Contact Mentee: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 157, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 157, + "textRun": { + "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 157, + "endIndex": 180, + "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" + } + } + }, + { + "startIndex": 157, + "endIndex": 180, + "textRun": { + "content": "Mentee contact Mentor:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 180, + "endIndex": 440, + "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" + } + } + }, + { + "startIndex": 180, + "endIndex": 440, + "textRun": { + "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 440, + "endIndex": 441, + "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" + } + } + }, + { + "startIndex": 440, + "endIndex": 441, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 441, + "endIndex": 506, + "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" + } + } + }, + { + "startIndex": 441, + "endIndex": 443, + "textRun": { + "content": "2.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 443, + "endIndex": 506, + "textRun": { + "content": " Time-consuming and not scalable as organization grows in size\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 506, + "endIndex": 507, + "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" + } + } + }, + { + "startIndex": 506, + "endIndex": 507, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 507, + "endIndex": 702, + "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" + } + } + }, + { + "startIndex": 507, + "endIndex": 509, + "textRun": { + "content": "3.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 509, + "endIndex": 702, + "textRun": { + "content": " Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 702, + "endIndex": 1380, + "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" + } + } + }, + { + "startIndex": 702, + "endIndex": 874, + "textRun": { + "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So, ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 874, + "endIndex": 936, + "textRun": { + "content": "mentors tend to provide specific problem-solving strategies (c", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 936, + "endIndex": 955, + "textRun": { + "content": "ognitive strategies", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 955, + "endIndex": 968, + "textRun": { + "content": ") instead of ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 968, + "endIndex": 992, + "textRun": { + "content": "metacognitive strategies", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 992, + "endIndex": 1072, + "textRun": { + "content": " that ensure the problem is solved in ways that promote mentee’s personal growth", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 1072, + "endIndex": 1380, + "textRun": { + "content": ". This is problematic because while the short-term goal of completing a specific task has been met, the underlying reason of why mentees were struggling with the task has been overlooked. In the long term, this underlying cause of struggling will likely cause many other problems for the mentor and mentees.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1380, + "endIndex": 1381, + "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" + } + } + }, + { + "startIndex": 1380, + "endIndex": 1381, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1381, + "endIndex": 1954, + "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" + } + } + }, + { + "startIndex": 1381, + "endIndex": 1383, + "textRun": { + "content": "4.", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 0.6 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1383, + "endIndex": 1384, + "textRun": { + "content": " ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1384, + "endIndex": 1405, + "textRun": { + "content": "Expression Challenge:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 1405, + "endIndex": 1770, + "textRun": { + "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1770, + "endIndex": 1897, + "textRun": { + "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 1897, + "endIndex": 1954, + "textRun": { + "content": " available through mentees' interaction with resources. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1954, + "endIndex": 1955, + "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" + } + } + }, + { + "startIndex": 1954, + "endIndex": 1955, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1955, + "endIndex": 2251, + "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" + } + } + }, + { + "startIndex": 1955, + "endIndex": 1961, + "textRun": { + "content": "Also, ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1961, + "endIndex": 2028, + "textRun": { + "content": "Mentors often find it difficult to put themselves in mentee’s shoes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 2028, + "endIndex": 2251, + "textRun": { + "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 5, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.7w4lrivrcuw2": { + "listId": "kix.7w4lrivrcuw2", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 877, + "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" + } + } + }, + { + "endIndex": 877, + "textRun": { + "content": "Mentors want to utilize their expertise to help mentees achieve personal growth while tackling complex tasks in a networked workspace by understanding when and why mentees are struggling and providing tailored strategies. Mentors currently use tools like online/in person communication, and workspace automation tools to support their mentoring practice. However, these tools are either time-consuming, not scalable, or promotes task-specific cognitive strategies that have limited long-term benefits for the mentees. While the OS language allows mentors to surface support strategies at appropriate times and settings, 1) it’s still hard for them to know why mentees are struggling because mentors often find it difficult to put themselves in mentee’s shoe, and 2) they lack the tools to translate their high level understanding of work strategies to machine representations.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.7w4lrivrcuw2": { + "listId": "kix.7w4lrivrcuw2", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2785400, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1481050, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 53, + "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" + } + } + }, + { + "endIndex": 53, + "textRun": { + "content": "✅/❌ Have you clearly distinguished the user classes?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 53, + "endIndex": 54, + "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" + } + } + }, + { + "startIndex": 53, + "endIndex": 54, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 54, + "endIndex": 118, + "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" + } + } + }, + { + "startIndex": 54, + "endIndex": 118, + "textRun": { + "content": "✅/❌ Do you state what your users are doing for each user class?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 118, + "endIndex": 119, + "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" + } + } + }, + { + "startIndex": 118, + "endIndex": 119, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 119, + "endIndex": 183, + "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" + } + } + }, + { + "startIndex": 119, + "endIndex": 183, + "textRun": { + "content": "✅/❌ Do you state the major characteristics for each user class?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 183, + "endIndex": 184, + "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" + } + } + }, + { + "startIndex": 183, + "endIndex": 184, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 184, + "endIndex": 237, + "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" + } + } + }, + { + "startIndex": 184, + "endIndex": 237, + "textRun": { + "content": "✅/❌ Have you generated personas for each user class?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "For each user class:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 125, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 125, + "textRun": { + "content": "✅/❌ Are these goals things that your actual users want to do (and not things you think they should do)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 125, + "endIndex": 126, + "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" + } + } + }, + { + "startIndex": 125, + "endIndex": 126, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 126, + "endIndex": 188, + "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" + } + } + }, + { + "startIndex": 126, + "endIndex": 188, + "textRun": { + "content": "✅/❌ Do you state why these goals are important to your users?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 188, + "endIndex": 189, + "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" + } + } + }, + { + "startIndex": 188, + "endIndex": 189, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 189, + "endIndex": 275, + "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" + } + } + }, + { + "startIndex": 189, + "endIndex": 275, + "textRun": { + "content": "✅/❌ Do you have evidence from your interviews or observations to support these goals?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "For each existing solution:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 122, + "textRun": { + "content": "✅/❌ Do you state how the current solution works, and how it is used to meet the users’ needs?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "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" + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 123, + "endIndex": 217, + "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" + } + } + }, + { + "startIndex": 123, + "endIndex": 217, + "textRun": { + "content": "✅/❌ Do you state what users think works well about the solution? What doesn’t work well? Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "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" + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 218, + "endIndex": 391, + "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" + } + } + }, + { + "startIndex": 218, + "endIndex": 313, + "textRun": { + "content": "✅/❌ Do you state why is it bad that current solution doesn’t work at all or isn’t good enough? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 313, + "endIndex": 391, + "textRun": { + "content": "(hint: really try to empathize with your users to understand their struggles)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "For each user class:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 98, + "textRun": { + "content": "✅/❌ Have you mapped out your user’s journey to understand their pain points?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 98, + "endIndex": 99, + "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" + } + } + }, + { + "startIndex": 98, + "endIndex": 99, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 99, + "endIndex": 158, + "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" + } + } + }, + { + "startIndex": 99, + "endIndex": 158, + "textRun": { + "content": "✅/❌ Do you understand why they are having these struggles?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 158, + "endIndex": 159, + "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" + } + } + }, + { + "startIndex": 158, + "endIndex": 159, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 159, + "endIndex": 242, + "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" + } + } + }, + { + "startIndex": 159, + "endIndex": 242, + "textRun": { + "content": "✅/❌ Do you understand why these obstacles are problematic or painful for the user?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 28, + "textRun": { + "content": "For each problem statement:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 98, + "textRun": { + "content": "✅/❌ Does your problem statement address who the users/characters are?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 98, + "endIndex": 99, + "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" + } + } + }, + { + "startIndex": 98, + "endIndex": 99, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 99, + "endIndex": 202, + "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" + } + } + }, + { + "startIndex": 99, + "endIndex": 202, + "textRun": { + "content": "✅/❌ Does your problem statement truly capture the core tension between the users’ needs and obstacles?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "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" + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 203, + "endIndex": 313, + "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" + } + } + }, + { + "startIndex": 203, + "endIndex": 313, + "textRun": { + "content": "✅/❌ Is your problem statement in the form, “User wants to do X, but can’t because Y, which is bad because Z”?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1481050, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g219b2f18f42_1_55", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 38, + "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" + } + } + }, + { + "endIndex": 37, + "textRun": { + "content": "Mysore Template: Problem Statement {}", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 37, + "endIndex": 38, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g219b2f18f42_1_56", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 16, + "textRun": { + "content": "[Grace & Jordan]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 16, + "endIndex": 17, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g219b2f18f42_1_53:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g219b2f18f42_1_57", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g219b2f18f42_1_58", + "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": 29, + "paragraphMarker": { + "style": { + "indentStart": { + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "A is an obstacle (good job!)\n", + "style": {} + } + }, + { + "startIndex": 29, + "endIndex": 164, + "paragraphMarker": { + "style": { + "indentStart": { + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 29, + "endIndex": 82, + "textRun": { + "content": "I would rephrase b-3 to emphasize on the complexity, ", + "style": {} + } + }, + { + "startIndex": 82, + "endIndex": 103, + "textRun": { + "content": "which mentors/mentees", + "style": { + "underline": true + } + } + }, + { + "startIndex": 103, + "endIndex": 164, + "textRun": { + "content": " (especially mentees) do know have the bandwidth to process.\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g219b2f18f42_1_58" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_0", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.1776, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 46, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 46, + "textRun": { + "content": "Takeaways from User Testing \n", + "style": {} + } + }, + { + "startIndex": 46, + "endIndex": 76, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 46, + "endIndex": 75, + "textRun": { + "content": "SP’23 Root Cause test Week 4 ", + "style": { + "bold": true, + "fontSize": { + "magnitude": 28, + "unit": "PT" + } + } + } + }, + { + "startIndex": 75, + "endIndex": 76, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 76, + "endIndex": 93, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 76, + "endIndex": 93, + "textRun": { + "content": "Do all 6 slides!\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22f97ba0f5f_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22f97ba0f5f_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_4", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 2, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 498850, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Mind Dump / “Off the top”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 128, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 127, + "textRun": { + "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 127, + "endIndex": 128, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 49, + "textRun": { + "content": "Restate your Problem Statement + Design Argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 49, + "endIndex": 136, + "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" + } + } + }, + { + "startIndex": 49, + "endIndex": 135, + "textRun": { + "content": "What was your problem statement and design argument that you tested in this user test?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 135, + "endIndex": 136, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "Testing Scenario + Measures", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 120, + "textRun": { + "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Individual Key Insights", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 94, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 93, + "textRun": { + "content": "As individuals, where were some insights you had from the user test? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 94, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 35, + "textRun": { + "content": "Synthesize Key Insights as a Group\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 35, + "endIndex": 76, + "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" + } + } + }, + { + "startIndex": 35, + "endIndex": 76, + "textRun": { + "content": "As a group, what were your key insights?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 498850, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 4266450, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "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" + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1, + "endIndex": 183, + "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" + } + } + }, + { + "startIndex": 1, + "endIndex": 183, + "textRun": { + "content": "1. For under-committed, the mentor was able to diagnose the root cause very quickly with direct, in-person communication. (might be due to it’s a relatively straightforward problem)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 183, + "endIndex": 184, + "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" + } + } + }, + { + "startIndex": 183, + "endIndex": 184, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 184, + "endIndex": 478, + "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" + } + } + }, + { + "startIndex": 184, + "endIndex": 478, + "textRun": { + "content": "2. The mentor enacted a very clear workflow going from the under-committed signal, to diagnosing the root cause (handwavy), and then to strategy (a mini session on the importance of sprint log as shared language that provides the mentor with a sense of their progress + how to use sprint log).\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 478, + "endIndex": 479, + "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" + } + } + }, + { + "startIndex": 478, + "endIndex": 479, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 479, + "endIndex": 747, + "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" + } + } + }, + { + "startIndex": 479, + "endIndex": 747, + "textRun": { + "content": "3. This process was peripheral but helpful. The signal we choose didn’t match his plan for the SIG meeting. It was not the most important thing he wanted to focus, but the he thought that “This talk about process was helpful to help me get a sense of their progress.”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 747, + "endIndex": 748, + "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" + } + } + }, + { + "startIndex": 747, + "endIndex": 748, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 748, + "endIndex": 946, + "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" + } + } + }, + { + "startIndex": 748, + "endIndex": 945, + "textRun": { + "content": "The effectiveness of script relies on mentor’s ability to come up with root causes -> research how we can help mentors come up with root causes -> if inexperienced mentors come up with root causes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 945, + "endIndex": 946, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.5ri3mahafe48": { + "listId": "kix.5ri3mahafe48", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.i113f9cri0bo": { + "listId": "kix.i113f9cri0bo", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.s9sznpijevks": { + "listId": "kix.s9sznpijevks", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 94, + "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" + } + } + }, + { + "endIndex": 94, + "textRun": { + "content": "Restate the problem and design you set out to test with the design sprint you just completed.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 95, + "endIndex": 96, + "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" + } + } + }, + { + "startIndex": 95, + "endIndex": 96, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 123, + "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" + } + } + }, + { + "endIndex": 123, + "textRun": { + "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "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" + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 124, + "endIndex": 216, + "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" + } + } + }, + { + "startIndex": 124, + "endIndex": 210, + "textRun": { + "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 210, + "endIndex": 216, + "textRun": { + "content": " Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 216, + "endIndex": 217, + "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" + } + } + }, + { + "startIndex": 216, + "endIndex": 217, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "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" + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.jd1po5vu03j4": { + "listId": "kix.jd1po5vu03j4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 214, + "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" + } + } + }, + { + "endIndex": 214, + "textRun": { + "content": "This test leads us to think that the current model of scaffolding leads the mentors to arrive to root causes and strategies that are on point and perceived as helpful to the mentee (at least for simpler scenarios)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "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" + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 215, + "endIndex": 375, + "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" + } + } + }, + { + "startIndex": 215, + "endIndex": 375, + "textRun": { + "content": "Since this part of the process seems successful, we should consider shifting gears to focus on how the mentor can realize this script after scaffolding for it \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 375, + "endIndex": 376, + "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" + } + } + }, + { + "startIndex": 375, + "endIndex": 376, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 376, + "endIndex": 509, + "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" + } + } + }, + { + "startIndex": 376, + "endIndex": 509, + "textRun": { + "content": "Tools should be presented clearly to the user so that they understand what the scripting environment affords/can’t afford to measure\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 509, + "endIndex": 510, + "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" + } + } + }, + { + "startIndex": 509, + "endIndex": 510, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 510, + "endIndex": 511, + "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" + } + } + }, + { + "startIndex": 510, + "endIndex": 511, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "Noise + false alarms\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 95, + "textRun": { + "content": "Numerical + field empty to detect problems with conceptual understanding\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 4266450, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g22f97ba0f5f_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 51, + "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" + } + } + }, + { + "endIndex": 50, + "textRun": { + "content": "Mysore Template: Quick Takeaways from User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 50, + "endIndex": 51, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g22f97ba0f5f_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22f97ba0f5f_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_9", + "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": 148, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 31, + "textRun": { + "content": "Look at some of the prompts in ", + "style": {} + } + }, + { + "startIndex": 31, + "endIndex": 146, + "textRun": { + "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61", + "style": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "HYPERLINK" + } + }, + "link": { + "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61" + }, + "underline": true + } + } + }, + { + "startIndex": 146, + "endIndex": 148, + "textRun": { + "content": " \n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22f97ba0f5f_0_9" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_10", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_11", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331477.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 6, + "tableRows": [ + { + "rowHeight": { + "magnitude": 784000, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 31, + "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" + } + } + }, + { + "endIndex": 31, + "textRun": { + "content": "Restate your Problem Statement\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 97, + "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" + } + } + }, + { + "startIndex": 31, + "endIndex": 97, + "textRun": { + "content": "What was your problem statement before going into your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 13, + "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" + } + } + }, + { + "endIndex": 12, + "textRun": { + "content": "User classes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 12, + "endIndex": 13, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 70, + "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" + } + } + }, + { + "startIndex": 13, + "endIndex": 69, + "textRun": { + "content": "How has your understanding of your user classes changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 23, + "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" + } + } + }, + { + "endIndex": 22, + "textRun": { + "content": "Users’ needs and goals", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 23, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 96, + "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" + } + } + }, + { + "startIndex": 23, + "endIndex": 95, + "textRun": { + "content": "How has your understanding of users’ high-level needs and goals changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 95, + "endIndex": 96, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Current solutions\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 97, + "textRun": { + "content": "Did you learn more about existing solutions that users have, and how they work?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 139, + "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" + } + } + }, + { + "endIndex": 39, + "textRun": { + "content": "Users’ obstacles to meeting their goals", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 39, + "endIndex": 40, + "textRun": { + "content": "\u000b", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 40, + "endIndex": 138, + "textRun": { + "content": "Did you learn more about why users are not able to meet their goal, with or without your solution?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 138, + "endIndex": 139, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 5 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Problem statement\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 142, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 141, + "textRun": { + "content": "How has your problem statement changed? What assumptions were correct/incorrect? What parts of the problem were reinforced?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 141, + "endIndex": 142, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 784000, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2544750, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2544750, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1483250, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 24, + "textRun": { + "content": "No checklist questions.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 80, + "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" + } + } + }, + { + "endIndex": 80, + "textRun": { + "content": "✅/❌ Did you include any new user classes you have identified through your test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "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" + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 81, + "endIndex": 146, + "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" + } + } + }, + { + "startIndex": 81, + "endIndex": 146, + "textRun": { + "content": "✅/❌Did you include any new characteristics of your user classes?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 146, + "endIndex": 147, + "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" + } + } + }, + { + "startIndex": 146, + "endIndex": 147, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 147, + "endIndex": 232, + "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" + } + } + }, + { + "startIndex": 147, + "endIndex": 232, + "textRun": { + "content": "✅/❌Did your findings reinforce any previously user classes or their characteristics?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "For each user class:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 111, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 111, + "textRun": { + "content": "✅/❌ Did you include any new needs/goals (or update existing ones) based on your findings?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 111, + "endIndex": 112, + "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" + } + } + }, + { + "startIndex": 111, + "endIndex": 112, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 112, + "endIndex": 184, + "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" + } + } + }, + { + "startIndex": 112, + "endIndex": 184, + "textRun": { + "content": "✅/❌ Did your findings reinforce any previously identified needs/goals? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "For each existing solution:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 151, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 150, + "textRun": { + "content": "✅/❌ Have you discovered new solutions that users have attempted to meet their needs? If so, do you explain how these work?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "For each user class:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 175, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 175, + "textRun": { + "content": "✅/❌ Have you discovered new obstacles to existing solutions, or your solution? If so, do you explain why users are having struggles with those solutions?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 175, + "endIndex": 176, + "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" + } + } + }, + { + "startIndex": 175, + "endIndex": 176, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 176, + "endIndex": 315, + "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" + } + } + }, + { + "startIndex": 176, + "endIndex": 315, + "textRun": { + "content": "✅/❌ Did your design uncover new obstacles that prevented users from reaching their goal? If so, did you explain why those obstacles exist?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 28, + "textRun": { + "content": "For each problem statement:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 104, + "textRun": { + "content": "✅/❌ Does your updated problem statement capture any new needs or obstacles?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 105, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 105, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 185, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 185, + "textRun": { + "content": "✅/❌ Do you include a problem statement for any new user classes you discovered?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1483250, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 6 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 6 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 6 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g22f97ba0f5f_0_12", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 54, + "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" + } + } + }, + { + "endIndex": 53, + "textRun": { + "content": "Mysore Template: Understanding Your Problem Statement", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 53, + "endIndex": 54, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g22f97ba0f5f_0_13", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22f97ba0f5f_0_10:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_14", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_15", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22f97ba0f5f_0_15" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_16", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_17", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331477.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 671900, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Restate your Design Argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 97, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 97, + "textRun": { + "content": "What was your design argument that you were testing this user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Desired User Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 85, + "textRun": { + "content": "How has your understanding of the desired user outcomes changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Obstacles to user outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 80, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 80, + "textRun": { + "content": "How has your understanding of the obstacles changed? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "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" + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 81, + "endIndex": 278, + "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" + } + } + }, + { + "startIndex": 81, + "endIndex": 278, + "textRun": { + "content": "Was the main practical obstacle the same as the conceptual obstacle? In other words, is it some usability problem that is blocking progress, or is it the actual obstacle from your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 22, + "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" + } + } + }, + { + "endIndex": 22, + "textRun": { + "content": "Design Characteristic\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 92, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 92, + "textRun": { + "content": "In what ways were your design characteristics effective? Ineffective?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 25, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Argument for your design\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 143, + "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" + } + } + }, + { + "startIndex": 25, + "endIndex": 143, + "textRun": { + "content": "What did you learn about the argument for how your characteristics can overcome the obstacles to reach user outcomes?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 671900, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2850650, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 240, + "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" + } + } + }, + { + "endIndex": 2, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 2, + "endIndex": 240, + "textRun": { + "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 240, + "endIndex": 241, + "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" + } + } + }, + { + "startIndex": 240, + "endIndex": 241, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 241, + "endIndex": 431, + "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" + } + } + }, + { + "startIndex": 241, + "endIndex": 243, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 243, + "endIndex": 431, + "textRun": { + "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 431, + "endIndex": 432, + "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" + } + } + }, + { + "startIndex": 431, + "endIndex": 432, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 432, + "endIndex": 742, + "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" + } + } + }, + { + "startIndex": 432, + "endIndex": 434, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 434, + "endIndex": 742, + "textRun": { + "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing so that they can help mentees achieve better long-term growth through tailored strategies.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 742, + "endIndex": 743, + "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" + } + } + }, + { + "startIndex": 742, + "endIndex": 743, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 743, + "endIndex": 1002, + "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" + } + } + }, + { + "startIndex": 743, + "endIndex": 745, + "textRun": { + "content": "->", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 745, + "endIndex": 1001, + "textRun": { + "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1001, + "endIndex": 1002, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2850650, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1289475, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "No checklist questions.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅/❌ Based on your user testing, did you have an updated description of what users want to be able to do?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 328, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 139, + "textRun": { + "content": "✅/❌ Did you include what you may ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 139, + "endIndex": 142, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 142, + "endIndex": 328, + "textRun": { + "content": " want users to do? In other words, did your users use your previous design in an unanticipated way that was not desirable, or helped you understand what outcomes users don’t care about?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 72, + "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" + } + } + }, + { + "endIndex": 72, + "textRun": { + "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 72, + "endIndex": 73, + "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" + } + } + }, + { + "startIndex": 72, + "endIndex": 73, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 73, + "endIndex": 139, + "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" + } + } + }, + { + "startIndex": 73, + "endIndex": 139, + "textRun": { + "content": "✅/❌ Did you include any new understanding about why designs fail?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 139, + "endIndex": 140, + "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" + } + } + }, + { + "startIndex": 139, + "endIndex": 140, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 140, + "endIndex": 326, + "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" + } + } + }, + { + "startIndex": 140, + "endIndex": 311, + "textRun": { + "content": "✅/❌ Does your understanding of obstacles point to what kinds of designs may succeed? In other words, do you understand now how to design successfully by understanding how ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 311, + "endIndex": 314, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 314, + "endIndex": 326, + "textRun": { + "content": " to design?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 97, + "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" + } + } + }, + { + "endIndex": 97, + "textRun": { + "content": "✅/❌ Did your characteristics support users in achieving the high-level outcomes they care about?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 74, + "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" + } + } + }, + { + "endIndex": 74, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the argument broke down? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 74, + "endIndex": 75, + "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" + } + } + }, + { + "startIndex": 74, + "endIndex": 75, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 75, + "endIndex": 148, + "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" + } + } + }, + { + "startIndex": 75, + "endIndex": 148, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the argument succeeded? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 148, + "endIndex": 149, + "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" + } + } + }, + { + "startIndex": 148, + "endIndex": 149, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1289475, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g22f97ba0f5f_0_18", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 52, + "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" + } + } + }, + { + "endIndex": 51, + "textRun": { + "content": "Mysore Template: Understanding Your Design Argument", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 51, + "endIndex": 52, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g22f97ba0f5f_0_19", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22f97ba0f5f_0_16:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_20", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_21", + "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": 143, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Check the updated prompts ", + "style": {} + } + }, + { + "startIndex": 26, + "endIndex": 141, + "textRun": { + "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73", + "style": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "HYPERLINK" + } + }, + "link": { + "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73" + }, + "underline": true + } + } + }, + { + "startIndex": 141, + "endIndex": 143, + "textRun": { + "content": " \n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22f97ba0f5f_0_21" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_22", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_23", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 570175, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Restate your Interface Model\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 139, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 139, + "textRun": { + "content": "What was the interface model you used to implement your design argument that you were testing this user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Desired Interface Outcomes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 27, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 97, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 96, + "textRun": { + "content": "How has your understanding of the desired interface outcomes changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 96, + "endIndex": 97, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 30, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Obstacle to Interface Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 30, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 30, + "endIndex": 84, + "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" + } + } + }, + { + "startIndex": 30, + "endIndex": 83, + "textRun": { + "content": "How has your understanding of the obstacles changed? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 83, + "endIndex": 84, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Interface Feature\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 91, + "textRun": { + "content": "In what ways were your interface characteristics effective? Ineffective?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 36, + "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" + } + } + }, + { + "endIndex": 36, + "textRun": { + "content": "Argument for your interface feature\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 164, + "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" + } + } + }, + { + "startIndex": 36, + "endIndex": 164, + "textRun": { + "content": "What did you learn about the argument for how your interface feature can overcome the obstacles to reach the interface outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 570175, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2938725, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2938725, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1303100, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "No checklist questions.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 146, + "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" + } + } + }, + { + "endIndex": 146, + "textRun": { + "content": "✅/❌ Based on your user testing, do you have an updated description of what your interface needs to do in order to implement your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 146, + "endIndex": 147, + "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" + } + } + }, + { + "startIndex": 146, + "endIndex": 147, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 147, + "endIndex": 359, + "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" + } + } + }, + { + "startIndex": 147, + "endIndex": 180, + "textRun": { + "content": "✅/❌ Did you include what you may ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 180, + "endIndex": 183, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 183, + "endIndex": 359, + "textRun": { + "content": " want your interface to allow? In other words, did your users use your previous interface in an unanticipated way that was not desirable to instantiating your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 72, + "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" + } + } + }, + { + "endIndex": 72, + "textRun": { + "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 72, + "endIndex": 73, + "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" + } + } + }, + { + "startIndex": 72, + "endIndex": 73, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 73, + "endIndex": 150, + "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" + } + } + }, + { + "startIndex": 73, + "endIndex": 150, + "textRun": { + "content": "✅/❌ Did you include any new understanding about why interface features fail?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "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" + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 151, + "endIndex": 348, + "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" + } + } + }, + { + "startIndex": 151, + "endIndex": 333, + "textRun": { + "content": "✅/❌ Does your understanding of obstacles point to what kinds of interface features may succeed? In other words, do you understand now how to design successfully by understanding how ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 333, + "endIndex": 336, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 336, + "endIndex": 348, + "textRun": { + "content": " to design?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 74, + "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" + } + } + }, + { + "endIndex": 74, + "textRun": { + "content": "✅/❌ Did your interface feature realize your design argument as intended? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 84, + "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" + } + } + }, + { + "endIndex": 84, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the interface argument broke down? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 84, + "endIndex": 85, + "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" + } + } + }, + { + "startIndex": 84, + "endIndex": 85, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 168, + "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" + } + } + }, + { + "startIndex": 85, + "endIndex": 168, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the interface argument succeeded? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 168, + "endIndex": 169, + "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" + } + } + }, + { + "startIndex": 168, + "endIndex": 169, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1303100, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g22f97ba0f5f_0_24", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 52, + "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" + } + } + }, + { + "endIndex": 51, + "textRun": { + "content": "Mysore Template: Understanding Your Interface Model", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 51, + "endIndex": 52, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g22f97ba0f5f_0_25", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22f97ba0f5f_0_22:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_26", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_27", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22f97ba0f5f_0_27" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_28", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_29", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331477.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 514350, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Restate your System Model\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 96, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 96, + "textRun": { + "content": "What was the system model you used to implement your interface model?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Desired System Outcomes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 90, + "textRun": { + "content": "How has your understanding of the desired system outcomes changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Obstacle to System Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 27, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 81, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 80, + "textRun": { + "content": "How has your understanding of the obstacles changed? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "System Methods or Techniques\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 99, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 99, + "textRun": { + "content": "In what ways were your system characteristics effective? Ineffective?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 42, + "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" + } + } + }, + { + "endIndex": 42, + "textRun": { + "content": "Argument for your system method/technique\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 42, + "endIndex": 158, + "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" + } + } + }, + { + "startIndex": 42, + "endIndex": 158, + "textRun": { + "content": "What did you learn about the argument for how your approach can overcome the obstacles to reach the system outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 514350, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2967625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2967625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1298850, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "No checklist questions.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 142, + "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" + } + } + }, + { + "endIndex": 142, + "textRun": { + "content": "✅/❌Based on your user testing, do you have an updated description of what your system needs to do in order to implement your interface model?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 142, + "endIndex": 143, + "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" + } + } + }, + { + "startIndex": 142, + "endIndex": 143, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 143, + "endIndex": 290, + "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" + } + } + }, + { + "startIndex": 143, + "endIndex": 175, + "textRun": { + "content": "✅/❌Did you include what you may ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 175, + "endIndex": 178, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 178, + "endIndex": 290, + "textRun": { + "content": " want your system model to allow? In other words, did your users attempt to use your system in unintended ways?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 71, + "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" + } + } + }, + { + "endIndex": 71, + "textRun": { + "content": "✅/❌Did you include any new obstacles that you learned through testing?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 71, + "endIndex": 72, + "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" + } + } + }, + { + "startIndex": 71, + "endIndex": 72, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 72, + "endIndex": 157, + "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" + } + } + }, + { + "startIndex": 72, + "endIndex": 157, + "textRun": { + "content": "✅/❌Did you include any new understanding about why your system implementation fails?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 157, + "endIndex": 158, + "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" + } + } + }, + { + "startIndex": 157, + "endIndex": 158, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 158, + "endIndex": 358, + "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" + } + } + }, + { + "startIndex": 158, + "endIndex": 343, + "textRun": { + "content": "✅/❌Does your understanding of obstacles point to what kinds of system implementations may succeed? In other words, do you understand now how to design successfully by understanding how ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 343, + "endIndex": 346, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 346, + "endIndex": 358, + "textRun": { + "content": " to design?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 118, + "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" + } + } + }, + { + "endIndex": 118, + "textRun": { + "content": "✅/❌Did your system model (and associated implementation methods/techniques) realize your interface model as intended?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 81, + "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" + } + } + }, + { + "endIndex": 81, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the system argument broke down? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 81, + "endIndex": 82, + "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" + } + } + }, + { + "startIndex": 81, + "endIndex": 82, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 82, + "endIndex": 162, + "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" + } + } + }, + { + "startIndex": 82, + "endIndex": 162, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the system argument succeeded? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 162, + "endIndex": 163, + "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" + } + } + }, + { + "startIndex": 162, + "endIndex": 163, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1298850, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g22f97ba0f5f_0_30", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Understanding Your System Model", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g22f97ba0f5f_0_31", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22f97ba0f5f_0_28:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_32", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_33", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22f97ba0f5f_0_33" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_34", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_35", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 121, + "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" + } + } + }, + { + "endIndex": 121, + "textRun": { + "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "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" + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 92, + "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" + } + } + }, + { + "endIndex": 92, + "textRun": { + "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 92, + "endIndex": 93, + "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" + } + } + }, + { + "startIndex": 92, + "endIndex": 93, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 93, + "endIndex": 199, + "textRun": { + "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 167, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 167, + "textRun": { + "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 167, + "endIndex": 168, + "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" + } + } + }, + { + "startIndex": 167, + "endIndex": 168, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 168, + "endIndex": 258, + "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" + } + } + }, + { + "startIndex": 168, + "endIndex": 258, + "textRun": { + "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "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" + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 259, + "endIndex": 467, + "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" + } + } + }, + { + "startIndex": 259, + "endIndex": 467, + "textRun": { + "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 467, + "endIndex": 468, + "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" + } + } + }, + { + "startIndex": 467, + "endIndex": 468, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 468, + "endIndex": 540, + "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" + } + } + }, + { + "startIndex": 468, + "endIndex": 540, + "textRun": { + "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 108, + "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" + } + } + }, + { + "endIndex": 108, + "textRun": { + "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 108, + "endIndex": 109, + "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" + } + } + }, + { + "startIndex": 108, + "endIndex": 109, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 109, + "endIndex": 202, + "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" + } + } + }, + { + "startIndex": 109, + "endIndex": 202, + "textRun": { + "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "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" + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g22f97ba0f5f_0_36", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g22f97ba0f5f_0_37", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g22f97ba0f5f_0_34:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g22f97ba0f5f_0_38", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g22f97ba0f5f_0_39", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g22f97ba0f5f_0_39" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_67", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_68", + "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": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "textRun": { + "content": "Study Design \n", + "style": {} + } + }, + { + "startIndex": 31, + "endIndex": 43, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 31, + "endIndex": 43, + "textRun": { + "content": "Test #1 & 2\n", + "style": { + "bold": true, + "fontSize": { + "magnitude": 28, + "unit": "PT" + } + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_67:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_69", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_70", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_70" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_71", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_72", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 565625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 22, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "Goals of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 165, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 164, + "textRun": { + "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 65, + "textRun": { + "content": "Who will you test your prototype with? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 65, + "endIndex": 66, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "textRun": { + "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "High-Level Expected Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "textRun": { + "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 565625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2554400, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 255, + "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" + } + } + }, + { + "endIndex": 255, + "textRun": { + "content": "We are trying to test if the blocks we have will actually enable the user to script for the scenario we have in mind. Are the blocks understandable? Will the user be able to construct both a detector and a strategy block to act on the situation detected?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 255, + "endIndex": 256, + "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" + } + } + }, + { + "startIndex": 255, + "endIndex": 256, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 256, + "endIndex": 266, + "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" + } + } + }, + { + "startIndex": 256, + "endIndex": 266, + "textRun": { + "content": "Scenario:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 266, + "endIndex": 310, + "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" + } + } + }, + { + "startIndex": 266, + "endIndex": 310, + "textRun": { + "content": "Detecting when a student is overcommitting \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 108, + "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" + } + } + }, + { + "endIndex": 108, + "textRun": { + "content": "Mentors in DTR. Specifically, we will pair with a mentor during PR and test the current interface with them\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 40, + "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" + } + } + }, + { + "endIndex": 40, + "textRun": { + "content": "1- We will give the mentor this prompt:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 40, + "endIndex": 172, + "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" + } + } + }, + { + "startIndex": 40, + "endIndex": 172, + "textRun": { + "content": "“Write a script that will enable you to detect when a student is overcommitting in a sprint and provides useful strategy (or more)”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 172, + "endIndex": 173, + "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" + } + } + }, + { + "startIndex": 172, + "endIndex": 173, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 173, + "endIndex": 174, + "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" + } + } + }, + { + "startIndex": 173, + "endIndex": 174, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 174, + "endIndex": 316, + "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" + } + } + }, + { + "startIndex": 174, + "endIndex": 316, + "textRun": { + "content": "2- We will observe as the user navigates the tool, paying extra attention to how they find the blocks and what meaning they make out of them \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 316, + "endIndex": 317, + "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" + } + } + }, + { + "startIndex": 316, + "endIndex": 317, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 317, + "endIndex": 444, + "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" + } + } + }, + { + "startIndex": 317, + "endIndex": 444, + "textRun": { + "content": "3- For this test, we have specific blocks designed that we think they user should use to script for this scenario (happy path)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 444, + "endIndex": 445, + "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" + } + } + }, + { + "startIndex": 444, + "endIndex": 445, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 445, + "endIndex": 466, + "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" + } + } + }, + { + "startIndex": 445, + "endIndex": 466, + "textRun": { + "content": "Post-test questions:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 466, + "endIndex": 551, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "1)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 466, + "endIndex": 551, + "textRun": { + "content": "Can you walk me through the logic you have? How do you think this is going to work? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 551, + "endIndex": 612, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "2)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 551, + "endIndex": 612, + "textRun": { + "content": "Were you able to find the blocks you needed? Why or why not?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 612, + "endIndex": 678, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "3)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 612, + "endIndex": 678, + "textRun": { + "content": "Were you able to understand what each block does? Why or why not?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 678, + "endIndex": 833, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "4)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 678, + "endIndex": 833, + "textRun": { + "content": "Why did you choose those specific blocks in the “if statement block”? Do you think this would succeed to capture the situation every time? Why or why not?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 833, + "endIndex": 834, + "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" + } + } + }, + { + "startIndex": 833, + "endIndex": 834, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 834, + "endIndex": 835, + "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" + } + } + }, + { + "startIndex": 834, + "endIndex": 835, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.qle4dnaitz2w": { + "listId": "kix.qle4dnaitz2w", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "We expect to learn: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 112, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 112, + "textRun": { + "content": "- How does the user get to deciding on what blocks they need to bring this script to life?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 112, + "endIndex": 113, + "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" + } + } + }, + { + "startIndex": 112, + "endIndex": 113, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 113, + "endIndex": 151, + "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" + } + } + }, + { + "startIndex": 113, + "endIndex": 151, + "textRun": { + "content": "- Can they find the blocks they need?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 151, + "endIndex": 152, + "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" + } + } + }, + { + "startIndex": 151, + "endIndex": 152, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 152, + "endIndex": 196, + "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" + } + } + }, + { + "startIndex": 152, + "endIndex": 196, + "textRun": { + "content": "- Do they understand what each block does? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 196, + "endIndex": 197, + "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" + } + } + }, + { + "startIndex": 196, + "endIndex": 197, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 197, + "endIndex": 273, + "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" + } + } + }, + { + "startIndex": 197, + "endIndex": 273, + "textRun": { + "content": "- Do they use each block as intended? If not, why? How else do they use it?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2554400, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1691975, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 86, + "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" + } + } + }, + { + "endIndex": 86, + "textRun": { + "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "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" + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 87, + "endIndex": 186, + "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" + } + } + }, + { + "startIndex": 87, + "endIndex": 186, + "textRun": { + "content": "✅/❌ Do you describe the specific features of your prototype that you are planning to test and why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 69, + "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" + } + } + }, + { + "endIndex": 69, + "textRun": { + "content": "✅/❌ Do you include who the users are, and how you will recruit them?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "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" + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 70, + "endIndex": 150, + "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" + } + } + }, + { + "startIndex": 70, + "endIndex": 150, + "textRun": { + "content": "✅/❌ Do you include how you will communicate with your users during your study? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "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" + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 151, + "endIndex": 240, + "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" + } + } + }, + { + "startIndex": 151, + "endIndex": 240, + "textRun": { + "content": "✅/❌ Do you consider any access issues that may prevent you from running your user tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 93, + "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" + } + } + }, + { + "endIndex": 93, + "textRun": { + "content": "✅/❌ Do you include the high-level tasks users will do, and how they will use your prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 94, + "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" + } + } + }, + { + "startIndex": 93, + "endIndex": 94, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 218, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 218, + "textRun": { + "content": "✅/❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 218, + "endIndex": 219, + "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" + } + } + }, + { + "startIndex": 218, + "endIndex": 219, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 219, + "endIndex": 328, + "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" + } + } + }, + { + "startIndex": 219, + "endIndex": 328, + "textRun": { + "content": "✅/❌ Do you include what data you will collect, and why that will inform if your design argument is working? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 328, + "endIndex": 329, + "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" + } + } + }, + { + "startIndex": 328, + "endIndex": 329, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 329, + "endIndex": 481, + "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" + } + } + }, + { + "startIndex": 329, + "endIndex": 481, + "textRun": { + "content": "✅/❌ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 481, + "endIndex": 482, + "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" + } + } + }, + { + "startIndex": 481, + "endIndex": 482, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 482, + "endIndex": 554, + "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" + } + } + }, + { + "startIndex": 482, + "endIndex": 554, + "textRun": { + "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 106, + "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" + } + } + }, + { + "endIndex": 106, + "textRun": { + "content": "✅/❌ Do your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 207, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 207, + "textRun": { + "content": "✅/❌ Do you include implications for how your problem statement may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 207, + "endIndex": 208, + "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" + } + } + }, + { + "startIndex": 207, + "endIndex": 208, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 208, + "endIndex": 307, + "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" + } + } + }, + { + "startIndex": 208, + "endIndex": 307, + "textRun": { + "content": "✅/❌ Do you include implications for how your design arguments may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1691975, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_73", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 34, + "textRun": { + "content": "Mysore Template: User Testing Plan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_74", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_71:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_75", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_76", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_76" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g215e1dfdce3_0_0", + "pageElements": [ + { + "objectId": "g215e1dfdce3_0_1", + "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": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 31, + "textRun": { + "content": "Study Design \n", + "style": {} + } + }, + { + "startIndex": 31, + "endIndex": 66, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 31, + "endIndex": 66, + "textRun": { + "content": "Final W’23 test (complex scenario)\n", + "style": { + "bold": true, + "fontSize": { + "magnitude": 28, + "unit": "PT" + } + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g215e1dfdce3_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g215e1dfdce3_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g215e1dfdce3_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g215e1dfdce3_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g215e1dfdce3_0_4", + "pageElements": [ + { + "objectId": "g215e1dfdce3_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 565625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 22, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "Goals of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 165, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 164, + "textRun": { + "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 164, + "endIndex": 165, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 65, + "textRun": { + "content": "Who will you test your prototype with? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 65, + "endIndex": 66, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 145, + "textRun": { + "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "High-Level Expected Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 132, + "textRun": { + "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 565625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2554400, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 115, + "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" + } + } + }, + { + "endIndex": 115, + "textRun": { + "content": "We have modified the scaffolding prompts and scripting workspace to address the following abstraction challenges: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 115, + "endIndex": 159, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.39ir17xo6jt1", + "glyph": "●", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 115, + "endIndex": 159, + "textRun": { + "content": "Under-scoped on root cause (Mix-initiative)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 159, + "endIndex": 193, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.39ir17xo6jt1", + "glyph": "●", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 159, + "endIndex": 193, + "textRun": { + "content": "Inaccuracy in encoding detection \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 193, + "endIndex": 258, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.39ir17xo6jt1", + "glyph": "●", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 193, + "endIndex": 258, + "textRun": { + "content": "Under-scoped on strategies (lack of personalization, onboarding)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "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" + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 259, + "endIndex": 498, + "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" + } + } + }, + { + "startIndex": 259, + "endIndex": 498, + "textRun": { + "content": "We are trying to test if the modified interface will help the user brainstorm root causes of a “complex” scenario, come up with a way to detect the situation using the blocks, and identify strategies that map to the root causes identified\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 498, + "endIndex": 499, + "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" + } + } + }, + { + "startIndex": 498, + "endIndex": 499, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 499, + "endIndex": 564, + "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" + } + } + }, + { + "startIndex": 499, + "endIndex": 564, + "textRun": { + "content": "This will help us verify our design argument and interface model\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 564, + "endIndex": 565, + "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" + } + } + }, + { + "startIndex": 564, + "endIndex": 565, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 565, + "endIndex": 808, + "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" + } + } + }, + { + "startIndex": 565, + "endIndex": 808, + "textRun": { + "content": "A Complex scenario: has more than 1 reason why it could be happening, therefore the detector should have multiple conditions and there should be at least 2 strategies to address it. Also resource suggested should differ for different students\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 808, + "endIndex": 809, + "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" + } + } + }, + { + "startIndex": 808, + "endIndex": 809, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.39ir17xo6jt1": { + "listId": "kix.39ir17xo6jt1", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 81, + "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" + } + } + }, + { + "endIndex": 81, + "textRun": { + "content": "One of the mentors in DTR (ideally a mentor with less exposure to the interface)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 81, + "endIndex": 82, + "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" + } + } + }, + { + "startIndex": 81, + "endIndex": 82, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 82, + "endIndex": 232, + "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" + } + } + }, + { + "startIndex": 82, + "endIndex": 232, + "textRun": { + "content": "We will start contacting the mentor early on in the week (by Monday max) with the hope to schedule a test later in the week (before studio on Friday)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 232, + "endIndex": 233, + "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" + } + } + }, + { + "startIndex": 232, + "endIndex": 233, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 233, + "endIndex": 326, + "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" + } + } + }, + { + "startIndex": 233, + "endIndex": 326, + "textRun": { + "content": "Contingency plan (depending on how fast the building is going): we test early on finals week\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 37, + "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" + } + } + }, + { + "endIndex": 37, + "textRun": { + "content": "We will give the mentor this prompt:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 37, + "endIndex": 295, + "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" + } + } + }, + { + "startIndex": 37, + "endIndex": 38, + "textRun": { + "content": "“", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 38, + "endIndex": 159, + "textRun": { + "content": "For projects with multiple team members, you want your students to develop skills across Design, Technology, and Research", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "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": 159, + "endIndex": 293, + "textRun": { + "content": ". Write a script to identify and address the situation when there is an imbalance in the distribution of D-T-R work among the students", + "style": { + "backgroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + } + }, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "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": 293, + "endIndex": 295, + "textRun": { + "content": "”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 295, + "endIndex": 296, + "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" + } + } + }, + { + "startIndex": 295, + "endIndex": 296, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 296, + "endIndex": 297, + "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" + } + } + }, + { + "startIndex": 296, + "endIndex": 297, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 297, + "endIndex": 492, + "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" + } + } + }, + { + "startIndex": 297, + "endIndex": 492, + "textRun": { + "content": "2- We will observe as the user navigates the tool, paying to what worked well and what didn’t work well as they go through the scaffolding (identifying root causes and strategies) and scripting \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 492, + "endIndex": 493, + "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" + } + } + }, + { + "startIndex": 492, + "endIndex": 493, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 493, + "endIndex": 620, + "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" + } + } + }, + { + "startIndex": 493, + "endIndex": 620, + "textRun": { + "content": "3- For this test, we have specific blocks designed that we think they user should use to script for this scenario (happy path)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 620, + "endIndex": 621, + "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" + } + } + }, + { + "startIndex": 620, + "endIndex": 621, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 621, + "endIndex": 642, + "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" + } + } + }, + { + "startIndex": 621, + "endIndex": 642, + "textRun": { + "content": "Post-test questions:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 642, + "endIndex": 799, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "1)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 642, + "endIndex": 799, + "textRun": { + "content": "Did the scaffolding give you a better idea of how to write the script? Were you able to map out the root causes and the strategies in the script you wrote?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 799, + "endIndex": 887, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "2)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 799, + "endIndex": 887, + "textRun": { + "content": "Can you walk me through the logic you have? How do you think this is going to execute? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 887, + "endIndex": 929, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "3)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 887, + "endIndex": 929, + "textRun": { + "content": "What worked well for you in this process?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 929, + "endIndex": 968, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "4)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 929, + "endIndex": 968, + "textRun": { + "content": "What didn’t work well? Any confusions?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 968, + "endIndex": 1029, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "5)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 968, + "endIndex": 1029, + "textRun": { + "content": "Were you able to find the blocks you needed? Why or why not?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1029, + "endIndex": 1095, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 11.25, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 11.25, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.qle4dnaitz2w", + "glyph": "6)", + "bulletStyle": { + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 1029, + "endIndex": 1095, + "textRun": { + "content": "Were you able to understand what each block does? Why or why not?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1095, + "endIndex": 1096, + "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" + } + } + }, + { + "startIndex": 1095, + "endIndex": 1096, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1096, + "endIndex": 1097, + "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" + } + } + }, + { + "startIndex": 1096, + "endIndex": 1097, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1097, + "endIndex": 1098, + "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" + } + } + }, + { + "startIndex": 1097, + "endIndex": 1098, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.qle4dnaitz2w": { + "listId": "kix.qle4dnaitz2w", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "We expect to learn: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 252, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 252, + "textRun": { + "content": "- Is the user able to identify root causes and map them to strategies using the scaffolding interface they have? Were they able to identify that different students would struggle with different things/need different kinds of help?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "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" + } + } + }, + { + "startIndex": 252, + "endIndex": 253, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 253, + "endIndex": 357, + "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" + } + } + }, + { + "startIndex": 253, + "endIndex": 357, + "textRun": { + "content": "- Are they able to express what they wrote about in the scaffolding steps using blocks? Why or why not?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 357, + "endIndex": 358, + "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" + } + } + }, + { + "startIndex": 357, + "endIndex": 358, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 358, + "endIndex": 449, + "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" + } + } + }, + { + "startIndex": 358, + "endIndex": 449, + "textRun": { + "content": "- How does the user get to deciding on what blocks they need to bring this script to life?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 449, + "endIndex": 450, + "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" + } + } + }, + { + "startIndex": 449, + "endIndex": 450, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 450, + "endIndex": 488, + "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" + } + } + }, + { + "startIndex": 450, + "endIndex": 488, + "textRun": { + "content": "- Can they find the blocks they need?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 488, + "endIndex": 489, + "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" + } + } + }, + { + "startIndex": 488, + "endIndex": 489, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 489, + "endIndex": 533, + "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" + } + } + }, + { + "startIndex": 489, + "endIndex": 533, + "textRun": { + "content": "- Do they understand what each block does? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 533, + "endIndex": 534, + "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" + } + } + }, + { + "startIndex": 533, + "endIndex": 534, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 534, + "endIndex": 610, + "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" + } + } + }, + { + "startIndex": 534, + "endIndex": 610, + "textRun": { + "content": "- Do they use each block as intended? If not, why? How else do they use it?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 610, + "endIndex": 611, + "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" + } + } + }, + { + "startIndex": 610, + "endIndex": 611, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 611, + "endIndex": 612, + "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" + } + } + }, + { + "startIndex": 611, + "endIndex": 612, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 612, + "endIndex": 633, + "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" + } + } + }, + { + "startIndex": 612, + "endIndex": 633, + "textRun": { + "content": "Potential measures: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 633, + "endIndex": 634, + "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" + } + } + }, + { + "startIndex": 633, + "endIndex": 634, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 634, + "endIndex": 739, + "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" + } + } + }, + { + "startIndex": 634, + "endIndex": 739, + "textRun": { + "content": "Number of blocks the user misused → used in a wrong way/a way that wouldn’t yield their expected outcome\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 739, + "endIndex": 740, + "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" + } + } + }, + { + "startIndex": 739, + "endIndex": 740, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 740, + "endIndex": 786, + "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" + } + } + }, + { + "startIndex": 740, + "endIndex": 786, + "textRun": { + "content": "Number of root causes identified → at least 2\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 786, + "endIndex": 787, + "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" + } + } + }, + { + "startIndex": 786, + "endIndex": 787, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 787, + "endIndex": 821, + "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" + } + } + }, + { + "startIndex": 787, + "endIndex": 821, + "textRun": { + "content": "Number of strategies → at least 2\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 821, + "endIndex": 822, + "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" + } + } + }, + { + "startIndex": 821, + "endIndex": 822, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 822, + "endIndex": 948, + "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" + } + } + }, + { + "startIndex": 822, + "endIndex": 948, + "textRun": { + "content": "Compare the script they built with the script we built (and know works). How much did they get right? What parts would break?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 948, + "endIndex": 949, + "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" + } + } + }, + { + "startIndex": 948, + "endIndex": 949, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 949, + "endIndex": 1033, + "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" + } + } + }, + { + "startIndex": 949, + "endIndex": 1033, + "textRun": { + "content": "[Not that important] how long did it take the user to go through the whole process?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2554400, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1691975, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 86, + "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" + } + } + }, + { + "endIndex": 86, + "textRun": { + "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "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" + } + } + }, + { + "startIndex": 86, + "endIndex": 87, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 87, + "endIndex": 186, + "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" + } + } + }, + { + "startIndex": 87, + "endIndex": 186, + "textRun": { + "content": "✅/❌ Do you describe the specific features of your prototype that you are planning to test and why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 69, + "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" + } + } + }, + { + "endIndex": 69, + "textRun": { + "content": "✅/❌ Do you include who the users are, and how you will recruit them?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "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" + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 70, + "endIndex": 150, + "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" + } + } + }, + { + "startIndex": 70, + "endIndex": 150, + "textRun": { + "content": "✅/❌ Do you include how you will communicate with your users during your study? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "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" + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 151, + "endIndex": 240, + "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" + } + } + }, + { + "startIndex": 151, + "endIndex": 240, + "textRun": { + "content": "✅/❌ Do you consider any access issues that may prevent you from running your user tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 93, + "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" + } + } + }, + { + "endIndex": 93, + "textRun": { + "content": "✅/❌ Do you include the high-level tasks users will do, and how they will use your prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 94, + "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" + } + } + }, + { + "startIndex": 93, + "endIndex": 94, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 218, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 218, + "textRun": { + "content": "✅/❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 218, + "endIndex": 219, + "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" + } + } + }, + { + "startIndex": 218, + "endIndex": 219, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 219, + "endIndex": 328, + "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" + } + } + }, + { + "startIndex": 219, + "endIndex": 328, + "textRun": { + "content": "✅/❌ Do you include what data you will collect, and why that will inform if your design argument is working? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 328, + "endIndex": 329, + "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" + } + } + }, + { + "startIndex": 328, + "endIndex": 329, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 329, + "endIndex": 481, + "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" + } + } + }, + { + "startIndex": 329, + "endIndex": 481, + "textRun": { + "content": "✅/❌ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 481, + "endIndex": 482, + "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" + } + } + }, + { + "startIndex": 481, + "endIndex": 482, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 482, + "endIndex": 554, + "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" + } + } + }, + { + "startIndex": 482, + "endIndex": 554, + "textRun": { + "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 106, + "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" + } + } + }, + { + "endIndex": 106, + "textRun": { + "content": "✅/❌ Do your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 107, + "endIndex": 207, + "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" + } + } + }, + { + "startIndex": 107, + "endIndex": 207, + "textRun": { + "content": "✅/❌ Do you include implications for how your problem statement may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 207, + "endIndex": 208, + "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" + } + } + }, + { + "startIndex": 207, + "endIndex": 208, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 208, + "endIndex": 307, + "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" + } + } + }, + { + "startIndex": 208, + "endIndex": 307, + "textRun": { + "content": "✅/❌ Do you include implications for how your design arguments may change based on these findings? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1691975, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g215e1dfdce3_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 34, + "textRun": { + "content": "Mysore Template: User Testing Plan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g215e1dfdce3_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 14, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 13, + "textRun": { + "content": "Grace & Rawan", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 14, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g215e1dfdce3_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g215e1dfdce3_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g215e1dfdce3_0_9", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g215e1dfdce3_0_9" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g10e508e5387_0_11", + "pageElements": [ + { + "objectId": "g10e508e5387_0_12", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.1776, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 59, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 59, + "textRun": { + "content": "Takeaways from User Testing #1(with Gobi)\n", + "style": {} + } + }, + { + "startIndex": 59, + "endIndex": 76, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 59, + "endIndex": 76, + "textRun": { + "content": "Do all 6 slides!\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g10e508e5387_0_11:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g10e508e5387_0_13", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g10e508e5387_0_14", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g10e508e5387_0_14" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g2117e6dac59_1_0", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 2, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 498850, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Mind Dump / “Off the top”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 128, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 127, + "textRun": { + "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 127, + "endIndex": 128, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 49, + "textRun": { + "content": "Restate your Problem Statement + Design Argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 49, + "endIndex": 136, + "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" + } + } + }, + { + "startIndex": 49, + "endIndex": 135, + "textRun": { + "content": "What was your problem statement and design argument that you tested in this user test?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 135, + "endIndex": 136, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "Testing Scenario + Measures", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 120, + "textRun": { + "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Individual Key Insights", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 94, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 93, + "textRun": { + "content": "As individuals, where were some insights you had from the user test? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 94, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 35, + "textRun": { + "content": "Synthesize Key Insights as a Group\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 35, + "endIndex": 76, + "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" + } + } + }, + { + "startIndex": 35, + "endIndex": 76, + "textRun": { + "content": "As a group, what were your key insights?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 498850, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 4266450, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "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" + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 1, + "endIndex": 154, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 9, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 6.75, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.5ri3mahafe48", + "glyph": "-", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "italic": true, + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 1, + "endIndex": 154, + "textRun": { + "content": "Most of the detection tools that the mentor came up with to detect specific root causes were based off of substring matching and detecting certain words\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 154, + "endIndex": 315, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 9, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 6.75, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.5ri3mahafe48", + "glyph": "-", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "italic": true, + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 154, + "endIndex": 315, + "textRun": { + "content": "We didn’t provide the list of tools for detection, so the user came up with detection signals that are out of scope → not detectable by our current system model\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 315, + "endIndex": 485, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 9, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 6.75, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.5ri3mahafe48", + "glyph": "-", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "italic": true, + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 315, + "endIndex": 485, + "textRun": { + "content": "When we interviewed the mentee, they said that the cause for the problem was the first root cause that the mentor identified → Do we need to overcomplicate this process?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 485, + "endIndex": 704, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 9, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 6.75, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.5ri3mahafe48", + "glyph": "-", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "italic": true, + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 485, + "endIndex": 704, + "textRun": { + "content": "The strategies that the student mentioned were (1) the mentor should check in regularly and give feedback to validate their thinking and (2) ask them to come up with risks individually before SIG (in the case of teams)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 704, + "endIndex": 758, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 9, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 6.75, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.5ri3mahafe48", + "glyph": "-", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "italic": true, + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 704, + "endIndex": 758, + "textRun": { + "content": "The strategies the mentor came up with were on point \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 758, + "endIndex": 759, + "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" + } + } + }, + { + "startIndex": 758, + "endIndex": 759, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 759, + "endIndex": 760, + "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" + } + } + }, + { + "startIndex": 759, + "endIndex": 760, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.5ri3mahafe48": { + "listId": "kix.5ri3mahafe48", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.i113f9cri0bo": { + "listId": "kix.i113f9cri0bo", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.s9sznpijevks": { + "listId": "kix.s9sznpijevks", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 94, + "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" + } + } + }, + { + "endIndex": 94, + "textRun": { + "content": "Restate the problem and design you set out to test with the design sprint you just completed.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 95, + "endIndex": 96, + "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" + } + } + }, + { + "startIndex": 95, + "endIndex": 96, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 123, + "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" + } + } + }, + { + "endIndex": 123, + "textRun": { + "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "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" + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 124, + "endIndex": 216, + "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" + } + } + }, + { + "startIndex": 124, + "endIndex": 210, + "textRun": { + "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 210, + "endIndex": 216, + "textRun": { + "content": " Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 216, + "endIndex": 217, + "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" + } + } + }, + { + "startIndex": 216, + "endIndex": 217, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "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" + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.jd1po5vu03j4": { + "listId": "kix.jd1po5vu03j4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 214, + "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" + } + } + }, + { + "endIndex": 214, + "textRun": { + "content": "This test leads us to think that the current model of scaffolding leads the mentors to arrive to root causes and strategies that are on point and perceived as helpful to the mentee (at least for simpler scenarios)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "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" + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 215, + "endIndex": 375, + "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" + } + } + }, + { + "startIndex": 215, + "endIndex": 375, + "textRun": { + "content": "Since this part of the process seems successful, we should consider shifting gears to focus on how the mentor can realize this script after scaffolding for it \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 375, + "endIndex": 376, + "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" + } + } + }, + { + "startIndex": 375, + "endIndex": 376, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 376, + "endIndex": 509, + "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" + } + } + }, + { + "startIndex": 376, + "endIndex": 509, + "textRun": { + "content": "Tools should be presented clearly to the user so that they understand what the scripting environment affords/can’t afford to measure\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 509, + "endIndex": 510, + "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" + } + } + }, + { + "startIndex": 509, + "endIndex": 510, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 510, + "endIndex": 511, + "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" + } + } + }, + { + "startIndex": 510, + "endIndex": 511, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 56, + "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" + } + } + }, + { + "endIndex": 56, + "textRun": { + "content": "Synthesize a list of 4-5 key insights across your team.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "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" + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 57, + "endIndex": 58, + "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" + } + } + }, + { + "startIndex": 57, + "endIndex": 58, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 4266450, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g2117e6dac59_1_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 51, + "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" + } + } + }, + { + "endIndex": 50, + "textRun": { + "content": "Mysore Template: Quick Takeaways from User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 50, + "endIndex": 51, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g2117e6dac59_1_3", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g2117e6dac59_1_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_4", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g2117e6dac59_1_5", + "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": 148, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 31, + "textRun": { + "content": "Look at some of the prompts in ", + "style": {} + } + }, + { + "startIndex": 31, + "endIndex": 146, + "textRun": { + "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61", + "style": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "HYPERLINK" + } + }, + "link": { + "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61" + }, + "underline": true + } + } + }, + { + "startIndex": 146, + "endIndex": 148, + "textRun": { + "content": " \n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g2117e6dac59_1_5" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_83", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_84", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331477.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 6, + "tableRows": [ + { + "rowHeight": { + "magnitude": 784000, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 31, + "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" + } + } + }, + { + "endIndex": 31, + "textRun": { + "content": "Restate your Problem Statement\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 31, + "endIndex": 97, + "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" + } + } + }, + { + "startIndex": 31, + "endIndex": 97, + "textRun": { + "content": "What was your problem statement before going into your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 13, + "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" + } + } + }, + { + "endIndex": 12, + "textRun": { + "content": "User classes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 12, + "endIndex": 13, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 13, + "endIndex": 70, + "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" + } + } + }, + { + "startIndex": 13, + "endIndex": 69, + "textRun": { + "content": "How has your understanding of your user classes changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 23, + "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" + } + } + }, + { + "endIndex": 22, + "textRun": { + "content": "Users’ needs and goals", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 23, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 96, + "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" + } + } + }, + { + "startIndex": 23, + "endIndex": 95, + "textRun": { + "content": "How has your understanding of users’ high-level needs and goals changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 95, + "endIndex": 96, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Current solutions\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 97, + "textRun": { + "content": "Did you learn more about existing solutions that users have, and how they work?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 139, + "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" + } + } + }, + { + "endIndex": 39, + "textRun": { + "content": "Users’ obstacles to meeting their goals", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 39, + "endIndex": 40, + "textRun": { + "content": "\u000b", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 40, + "endIndex": 138, + "textRun": { + "content": "Did you learn more about why users are not able to meet their goal, with or without your solution?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 138, + "endIndex": 139, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 5 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Problem statement\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 142, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 141, + "textRun": { + "content": "How has your problem statement changed? What assumptions were correct/incorrect? What parts of the problem were reinforced?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 141, + "endIndex": 142, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 784000, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2544750, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2544750, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1483250, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 24, + "textRun": { + "content": "No checklist questions.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 80, + "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" + } + } + }, + { + "endIndex": 80, + "textRun": { + "content": "✅/❌ Did you include any new user classes you have identified through your test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "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" + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 81, + "endIndex": 146, + "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" + } + } + }, + { + "startIndex": 81, + "endIndex": 146, + "textRun": { + "content": "✅/❌Did you include any new characteristics of your user classes?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 146, + "endIndex": 147, + "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" + } + } + }, + { + "startIndex": 146, + "endIndex": 147, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 147, + "endIndex": 232, + "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" + } + } + }, + { + "startIndex": 147, + "endIndex": 232, + "textRun": { + "content": "✅/❌Did your findings reinforce any previously user classes or their characteristics?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "For each user class:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 111, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 111, + "textRun": { + "content": "✅/❌ Did you include any new needs/goals (or update existing ones) based on your findings?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 111, + "endIndex": 112, + "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" + } + } + }, + { + "startIndex": 111, + "endIndex": 112, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 112, + "endIndex": 184, + "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" + } + } + }, + { + "startIndex": 112, + "endIndex": 184, + "textRun": { + "content": "✅/❌ Did your findings reinforce any previously identified needs/goals? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "For each existing solution:", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 151, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 150, + "textRun": { + "content": "✅/❌ Have you discovered new solutions that users have attempted to meet their needs? If so, do you explain how these work?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 21, + "textRun": { + "content": "For each user class:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 175, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 175, + "textRun": { + "content": "✅/❌ Have you discovered new obstacles to existing solutions, or your solution? If so, do you explain why users are having struggles with those solutions?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 175, + "endIndex": 176, + "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" + } + } + }, + { + "startIndex": 175, + "endIndex": 176, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 176, + "endIndex": 315, + "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" + } + } + }, + { + "startIndex": 176, + "endIndex": 315, + "textRun": { + "content": "✅/❌ Did your design uncover new obstacles that prevented users from reaching their goal? If so, did you explain why those obstacles exist?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 28, + "textRun": { + "content": "For each problem statement:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 104, + "textRun": { + "content": "✅/❌ Does your updated problem statement capture any new needs or obstacles?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 105, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 105, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 185, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 185, + "textRun": { + "content": "✅/❌ Do you include a problem statement for any new user classes you discovered?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1483250, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1524000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 6 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 6 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 6 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_85", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 54, + "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" + } + } + }, + { + "endIndex": 53, + "textRun": { + "content": "Mysore Template: Understanding Your Problem Statement", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 53, + "endIndex": 54, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_86", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_83:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_87", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_88", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_88" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_89", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_90", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331477.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 671900, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Restate your Design Argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 97, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 97, + "textRun": { + "content": "What was your design argument that you were testing this user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Desired User Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 85, + "textRun": { + "content": "How has your understanding of the desired user outcomes changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Obstacles to user outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 80, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 80, + "textRun": { + "content": "How has your understanding of the obstacles changed? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "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" + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 81, + "endIndex": 278, + "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" + } + } + }, + { + "startIndex": 81, + "endIndex": 278, + "textRun": { + "content": "Was the main practical obstacle the same as the conceptual obstacle? In other words, is it some usability problem that is blocking progress, or is it the actual obstacle from your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 22, + "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" + } + } + }, + { + "endIndex": 22, + "textRun": { + "content": "Design Characteristic\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 22, + "endIndex": 92, + "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" + } + } + }, + { + "startIndex": 22, + "endIndex": 92, + "textRun": { + "content": "In what ways were your design characteristics effective? Ineffective?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 25, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Argument for your design\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 143, + "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" + } + } + }, + { + "startIndex": 25, + "endIndex": 143, + "textRun": { + "content": "What did you learn about the argument for how your characteristics can overcome the obstacles to reach user outcomes?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 671900, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2850650, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2850650, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1289475, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "No checklist questions.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅/❌ Based on your user testing, did you have an updated description of what users want to be able to do?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 328, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 139, + "textRun": { + "content": "✅/❌ Did you include what you may ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 139, + "endIndex": 142, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 142, + "endIndex": 328, + "textRun": { + "content": " want users to do? In other words, did your users use your previous design in an unanticipated way that was not desirable, or helped you understand what outcomes users don’t care about?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 72, + "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" + } + } + }, + { + "endIndex": 72, + "textRun": { + "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 72, + "endIndex": 73, + "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" + } + } + }, + { + "startIndex": 72, + "endIndex": 73, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 73, + "endIndex": 139, + "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" + } + } + }, + { + "startIndex": 73, + "endIndex": 139, + "textRun": { + "content": "✅/❌ Did you include any new understanding about why designs fail?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 139, + "endIndex": 140, + "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" + } + } + }, + { + "startIndex": 139, + "endIndex": 140, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 140, + "endIndex": 326, + "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" + } + } + }, + { + "startIndex": 140, + "endIndex": 311, + "textRun": { + "content": "✅/❌ Does your understanding of obstacles point to what kinds of designs may succeed? In other words, do you understand now how to design successfully by understanding how ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 311, + "endIndex": 314, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 314, + "endIndex": 326, + "textRun": { + "content": " to design?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 97, + "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" + } + } + }, + { + "endIndex": 97, + "textRun": { + "content": "✅/❌ Did your characteristics support users in achieving the high-level outcomes they care about?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 74, + "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" + } + } + }, + { + "endIndex": 74, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the argument broke down? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 74, + "endIndex": 75, + "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" + } + } + }, + { + "startIndex": 74, + "endIndex": 75, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 75, + "endIndex": 148, + "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" + } + } + }, + { + "startIndex": 75, + "endIndex": 148, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the argument succeeded? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 148, + "endIndex": 149, + "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" + } + } + }, + { + "startIndex": 148, + "endIndex": 149, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1289475, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_91", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 52, + "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" + } + } + }, + { + "endIndex": 51, + "textRun": { + "content": "Mysore Template: Understanding Your Design Argument", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 51, + "endIndex": 52, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_92", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_89:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_93", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_94", + "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": 143, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Check the updated prompts ", + "style": {} + } + }, + { + "startIndex": 26, + "endIndex": 141, + "textRun": { + "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73", + "style": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "HYPERLINK" + } + }, + "link": { + "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73" + }, + "underline": true + } + } + }, + { + "startIndex": 141, + "endIndex": 143, + "textRun": { + "content": " \n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_94" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_95", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_96", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 570175, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Restate your Interface Model\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 139, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 139, + "textRun": { + "content": "What was the interface model you used to implement your design argument that you were testing this user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Desired Interface Outcomes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 27, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 97, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 96, + "textRun": { + "content": "How has your understanding of the desired interface outcomes changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 96, + "endIndex": 97, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 30, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Obstacle to Interface Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 30, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 30, + "endIndex": 84, + "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" + } + } + }, + { + "startIndex": 30, + "endIndex": 83, + "textRun": { + "content": "How has your understanding of the obstacles changed? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 83, + "endIndex": 84, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Interface Feature\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 18, + "endIndex": 91, + "textRun": { + "content": "In what ways were your interface characteristics effective? Ineffective?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 36, + "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" + } + } + }, + { + "endIndex": 36, + "textRun": { + "content": "Argument for your interface feature\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 164, + "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" + } + } + }, + { + "startIndex": 36, + "endIndex": 164, + "textRun": { + "content": "What did you learn about the argument for how your interface feature can overcome the obstacles to reach the interface outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 570175, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2938725, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2938725, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1303100, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "No checklist questions.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 146, + "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" + } + } + }, + { + "endIndex": 146, + "textRun": { + "content": "✅/❌ Based on your user testing, do you have an updated description of what your interface needs to do in order to implement your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 146, + "endIndex": 147, + "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" + } + } + }, + { + "startIndex": 146, + "endIndex": 147, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 147, + "endIndex": 359, + "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" + } + } + }, + { + "startIndex": 147, + "endIndex": 180, + "textRun": { + "content": "✅/❌ Did you include what you may ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 180, + "endIndex": 183, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 183, + "endIndex": 359, + "textRun": { + "content": " want your interface to allow? In other words, did your users use your previous interface in an unanticipated way that was not desirable to instantiating your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 72, + "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" + } + } + }, + { + "endIndex": 72, + "textRun": { + "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 72, + "endIndex": 73, + "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" + } + } + }, + { + "startIndex": 72, + "endIndex": 73, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 73, + "endIndex": 150, + "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" + } + } + }, + { + "startIndex": 73, + "endIndex": 150, + "textRun": { + "content": "✅/❌ Did you include any new understanding about why interface features fail?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "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" + } + } + }, + { + "startIndex": 150, + "endIndex": 151, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 151, + "endIndex": 348, + "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" + } + } + }, + { + "startIndex": 151, + "endIndex": 333, + "textRun": { + "content": "✅/❌ Does your understanding of obstacles point to what kinds of interface features may succeed? In other words, do you understand now how to design successfully by understanding how ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 333, + "endIndex": 336, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 336, + "endIndex": 348, + "textRun": { + "content": " to design?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 74, + "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" + } + } + }, + { + "endIndex": 74, + "textRun": { + "content": "✅/❌ Did your interface feature realize your design argument as intended? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 84, + "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" + } + } + }, + { + "endIndex": 84, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the interface argument broke down? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 84, + "endIndex": 85, + "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" + } + } + }, + { + "startIndex": 84, + "endIndex": 85, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 168, + "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" + } + } + }, + { + "startIndex": 85, + "endIndex": 168, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the interface argument succeeded? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 168, + "endIndex": 169, + "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" + } + } + }, + { + "startIndex": 168, + "endIndex": 169, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1303100, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_97", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 52, + "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" + } + } + }, + { + "endIndex": 51, + "textRun": { + "content": "Mysore Template: Understanding Your Interface Model", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 51, + "endIndex": 52, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_98", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_95:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_99", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_100", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_100" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_101", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_102", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331477.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 514350, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Restate your System Model\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 96, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 96, + "textRun": { + "content": "What was the system model you used to implement your interface model?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Desired System Outcomes", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 90, + "textRun": { + "content": "How has your understanding of the desired system outcomes changed?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Obstacle to System Outcome", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 27, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 81, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 80, + "textRun": { + "content": "How has your understanding of the obstacles changed? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "System Methods or Techniques\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 99, + "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" + } + } + }, + { + "startIndex": 29, + "endIndex": 99, + "textRun": { + "content": "In what ways were your system characteristics effective? Ineffective?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 42, + "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" + } + } + }, + { + "endIndex": 42, + "textRun": { + "content": "Argument for your system method/technique\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 42, + "endIndex": 158, + "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" + } + } + }, + { + "startIndex": 42, + "endIndex": 158, + "textRun": { + "content": "What did you learn about the argument for how your approach can overcome the obstacles to reach the system outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 514350, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2967625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2967625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1298850, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "No checklist questions.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 142, + "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" + } + } + }, + { + "endIndex": 142, + "textRun": { + "content": "✅/❌Based on your user testing, do you have an updated description of what your system needs to do in order to implement your interface model?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 142, + "endIndex": 143, + "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" + } + } + }, + { + "startIndex": 142, + "endIndex": 143, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 143, + "endIndex": 290, + "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" + } + } + }, + { + "startIndex": 143, + "endIndex": 175, + "textRun": { + "content": "✅/❌Did you include what you may ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 175, + "endIndex": 178, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 178, + "endIndex": 290, + "textRun": { + "content": " want your system model to allow? In other words, did your users attempt to use your system in unintended ways?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 71, + "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" + } + } + }, + { + "endIndex": 71, + "textRun": { + "content": "✅/❌Did you include any new obstacles that you learned through testing?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 71, + "endIndex": 72, + "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" + } + } + }, + { + "startIndex": 71, + "endIndex": 72, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 72, + "endIndex": 157, + "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" + } + } + }, + { + "startIndex": 72, + "endIndex": 157, + "textRun": { + "content": "✅/❌Did you include any new understanding about why your system implementation fails?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 157, + "endIndex": 158, + "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" + } + } + }, + { + "startIndex": 157, + "endIndex": 158, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 158, + "endIndex": 358, + "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" + } + } + }, + { + "startIndex": 158, + "endIndex": 343, + "textRun": { + "content": "✅/❌Does your understanding of obstacles point to what kinds of system implementations may succeed? In other words, do you understand now how to design successfully by understanding how ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 343, + "endIndex": 346, + "textRun": { + "content": "not", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 346, + "endIndex": 358, + "textRun": { + "content": " to design?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 118, + "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" + } + } + }, + { + "endIndex": 118, + "textRun": { + "content": "✅/❌Did your system model (and associated implementation methods/techniques) realize your interface model as intended?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 81, + "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" + } + } + }, + { + "endIndex": 81, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the system argument broke down? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 81, + "endIndex": 82, + "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" + } + } + }, + { + "startIndex": 81, + "endIndex": 82, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 82, + "endIndex": 162, + "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" + } + } + }, + { + "startIndex": 82, + "endIndex": 162, + "textRun": { + "content": "✅/❌ Did you capture your understanding of where the system argument succeeded? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 162, + "endIndex": 163, + "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" + } + } + }, + { + "startIndex": 162, + "endIndex": 163, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1298850, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_103", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Understanding Your System Model", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_104", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_101:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_105", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_106", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_106" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_107", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_108", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 121, + "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" + } + } + }, + { + "endIndex": 121, + "textRun": { + "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "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" + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 92, + "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" + } + } + }, + { + "endIndex": 92, + "textRun": { + "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 92, + "endIndex": 93, + "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" + } + } + }, + { + "startIndex": 92, + "endIndex": 93, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 93, + "endIndex": 199, + "textRun": { + "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 167, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 167, + "textRun": { + "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 167, + "endIndex": 168, + "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" + } + } + }, + { + "startIndex": 167, + "endIndex": 168, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 168, + "endIndex": 258, + "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" + } + } + }, + { + "startIndex": 168, + "endIndex": 258, + "textRun": { + "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "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" + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 259, + "endIndex": 467, + "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" + } + } + }, + { + "startIndex": 259, + "endIndex": 467, + "textRun": { + "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 467, + "endIndex": 468, + "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" + } + } + }, + { + "startIndex": 467, + "endIndex": 468, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 468, + "endIndex": 540, + "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" + } + } + }, + { + "startIndex": 468, + "endIndex": 540, + "textRun": { + "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 108, + "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" + } + } + }, + { + "endIndex": 108, + "textRun": { + "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 108, + "endIndex": 109, + "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" + } + } + }, + { + "startIndex": 108, + "endIndex": 109, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 109, + "endIndex": 202, + "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" + } + } + }, + { + "startIndex": 109, + "endIndex": 202, + "textRun": { + "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "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" + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_109", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_110", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_107:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_111", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_112", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_112" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g2117e6dac59_1_6", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.1776, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 58, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 58, + "textRun": { + "content": "Takeaways from User Testing #2 (with Li)\n", + "style": {} + } + }, + { + "startIndex": 58, + "endIndex": 75, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 58, + "endIndex": 75, + "textRun": { + "content": "Do all 6 slides!\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g2117e6dac59_1_6:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g2117e6dac59_1_9", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g2117e6dac59_1_9" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g2117e6dac59_1_10", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_11", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 2, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 498850, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Mind Dump / “Off the top”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 128, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 127, + "textRun": { + "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 127, + "endIndex": 128, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 49, + "textRun": { + "content": "Restate your Problem Statement + Design Argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 49, + "endIndex": 136, + "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" + } + } + }, + { + "startIndex": 49, + "endIndex": 135, + "textRun": { + "content": "What was your problem statement and design argument that you tested in this user test?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 135, + "endIndex": 136, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "Testing Scenario + Measures", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 120, + "textRun": { + "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Individual Key Insights", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 94, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 93, + "textRun": { + "content": "As individuals, where were some insights you had from the user test? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 94, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 35, + "textRun": { + "content": "Synthesize Key Insights as a Group\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 35, + "endIndex": 76, + "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" + } + } + }, + { + "startIndex": 35, + "endIndex": 76, + "textRun": { + "content": "As a group, what were your key insights?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 498850, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 4266450, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 66, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 10, + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + } + } + }, + { + "endIndex": 66, + "textRun": { + "content": "1. Li thought the Applicable Set block is for detecting situation\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 254, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 10, + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + } + } + }, + { + "startIndex": 66, + "endIndex": 180, + "textRun": { + "content": "2. Assumed the script will operate for all projects, and the script will automatically operate for each sprint -> ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 180, + "endIndex": 254, + "textRun": { + "content": "need to specific execution logic of the system or do something equivalent\n", + "style": { + "backgroundColor": { + "opaqueColor": { + "themeColor": "ACCENT6" + } + }, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 254, + "endIndex": 291, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 10, + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + } + } + }, + { + "startIndex": 254, + "endIndex": 291, + "textRun": { + "content": "3. Didn’t specify part of the sprint\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 291, + "endIndex": 339, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 10, + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + } + } + }, + { + "startIndex": 291, + "endIndex": 339, + "textRun": { + "content": "4. Clicked on the white tab in tools categories\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 339, + "endIndex": 512, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 10, + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + } + } + }, + { + "startIndex": 339, + "endIndex": 433, + "textRun": { + "content": "5. Text send block -> medium is place/who you are sending to (SIG OH blocks are confusing) -> ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 433, + "endIndex": 512, + "textRun": { + "content": "should raise error when blocks other than slack or email is attached to medium\n", + "style": { + "backgroundColor": { + "opaqueColor": { + "themeColor": "ACCENT6" + } + }, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 512, + "endIndex": 677, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "magnitude": 10, + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + } + } + }, + { + "startIndex": 512, + "endIndex": 632, + "textRun": { + "content": "6. Want to ask the question at SIG -> thought the text send block would send right at the SIG so he will bring it up -> ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 632, + "endIndex": 676, + "textRun": { + "content": "need guidance on which block should go where", + "style": { + "backgroundColor": { + "opaqueColor": { + "themeColor": "ACCENT6" + } + }, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 676, + "endIndex": 677, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.5ri3mahafe48": { + "listId": "kix.5ri3mahafe48", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.8205q01gxa3e": { + "listId": "kix.8205q01gxa3e", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.i113f9cri0bo": { + "listId": "kix.i113f9cri0bo", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.s9sznpijevks": { + "listId": "kix.s9sznpijevks", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 212, + "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" + } + } + }, + { + "endIndex": 212, + "textRun": { + "content": "This test was for testing our Interface argument: with blockly workspace, mentors would be able to write scripts that they want to using our interface (after they have a clear idea of what they’re scripting for)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 212, + "endIndex": 213, + "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" + } + } + }, + { + "startIndex": 212, + "endIndex": 213, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 213, + "endIndex": 214, + "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" + } + } + }, + { + "startIndex": 213, + "endIndex": 214, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "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" + } + } + }, + { + "startIndex": 214, + "endIndex": 215, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 123, + "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" + } + } + }, + { + "endIndex": 123, + "textRun": { + "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "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" + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 124, + "endIndex": 216, + "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" + } + } + }, + { + "startIndex": 124, + "endIndex": 210, + "textRun": { + "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 210, + "endIndex": 216, + "textRun": { + "content": " Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 216, + "endIndex": 217, + "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" + } + } + }, + { + "startIndex": 216, + "endIndex": 217, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 217, + "endIndex": 322, + "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" + } + } + }, + { + "startIndex": 217, + "endIndex": 322, + "textRun": { + "content": "We set out to test this by asking the user to script for a simple yet frequent situation that we chose: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 322, + "endIndex": 400, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.co5ukh9un64i", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 322, + "endIndex": 400, + "textRun": { + "content": "Write a script that will detect if any project is over-committing in a sprint\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 400, + "endIndex": 446, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.co5ukh9un64i", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 400, + "endIndex": 446, + "textRun": { + "content": "This script should run for the entire quarter\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 446, + "endIndex": 564, + "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" + } + } + }, + { + "startIndex": 446, + "endIndex": 564, + "textRun": { + "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 564, + "endIndex": 565, + "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" + } + } + }, + { + "startIndex": 564, + "endIndex": 565, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 565, + "endIndex": 627, + "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" + } + } + }, + { + "startIndex": 565, + "endIndex": 626, + "textRun": { + "content": "Strategy: open-ended, (e.g. send out slack message to mentor)", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 626, + "endIndex": 627, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 627, + "endIndex": 628, + "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" + } + } + }, + { + "startIndex": 627, + "endIndex": 628, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 628, + "endIndex": 629, + "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" + } + } + }, + { + "startIndex": 628, + "endIndex": 629, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 629, + "endIndex": 663, + "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" + } + } + }, + { + "startIndex": 629, + "endIndex": 663, + "textRun": { + "content": "If interface argument == correct:\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 663, + "endIndex": 737, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.eg76jxd69d", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 6, + "unit": "PT" + } + } + } + } + }, + { + "startIndex": 663, + "endIndex": 737, + "textRun": { + "content": "User should be able to write a script close to the sample script smoothly\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 737, + "endIndex": 893, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "START", + "indentStart": { + "magnitude": 36, + "unit": "PT" + }, + "indentEnd": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "spaceBelow": { + "unit": "PT" + }, + "indentFirstLine": { + "magnitude": 18, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "COLLAPSE_LISTS" + }, + "bullet": { + "listId": "kix.eg76jxd69d", + "glyph": "●", + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "underline": false + } + } + } + }, + { + "startIndex": 737, + "endIndex": 893, + "textRun": { + "content": "Measurements:\u000b- correctness of script (most important)\u000b- degree of confusion in the scripting process\u000b- any misunderstanding of blocks/interface components\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 893, + "endIndex": 894, + "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" + } + } + }, + { + "startIndex": 893, + "endIndex": 894, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.co5ukh9un64i": { + "listId": "kix.co5ukh9un64i", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.eg76jxd69d": { + "listId": "kix.eg76jxd69d", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.jd1po5vu03j4": { + "listId": "kix.jd1po5vu03j4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "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" + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "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" + } + } + }, + { + "startIndex": 1, + "endIndex": 2, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "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" + } + } + }, + { + "startIndex": 2, + "endIndex": 3, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 56, + "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" + } + } + }, + { + "endIndex": 56, + "textRun": { + "content": "Synthesize a list of 4-5 key insights across your team.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "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" + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 57, + "endIndex": 58, + "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" + } + } + }, + { + "startIndex": 57, + "endIndex": 58, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 4266450, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g2117e6dac59_1_12", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 51, + "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" + } + } + }, + { + "endIndex": 50, + "textRun": { + "content": "Mysore Template: Quick Takeaways from User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 50, + "endIndex": 51, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g2117e6dac59_1_13", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g2117e6dac59_1_10:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_14", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g2117e6dac59_1_15", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g2117e6dac59_1_15" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g2117e6dac59_1_40", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_41", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 138, + "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" + } + } + }, + { + "endIndex": 138, + "textRun": { + "content": "Whether user will be able to compose the correct script for a specified situation (or something close to the correct script that works). \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 138, + "endIndex": 139, + "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" + } + } + }, + { + "startIndex": 138, + "endIndex": 139, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 6, + "textRun": { + "content": "Yes. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "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" + } + } + }, + { + "startIndex": 6, + "endIndex": 7, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 7, + "endIndex": 172, + "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" + } + } + }, + { + "startIndex": 7, + "endIndex": 172, + "textRun": { + "content": "Li is not a mentor, but we’re trying to expand our user group to include students, so it’s really valuable to test with a student who have not used our tool before.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 118, + "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" + } + } + }, + { + "endIndex": 118, + "textRun": { + "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 118, + "endIndex": 119, + "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" + } + } + }, + { + "startIndex": 118, + "endIndex": 119, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 119, + "endIndex": 181, + "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" + } + } + }, + { + "startIndex": 119, + "endIndex": 181, + "textRun": { + "content": "Strategy: open-ended, (e.g. send out slack message to mentor)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 181, + "endIndex": 182, + "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" + } + } + }, + { + "startIndex": 181, + "endIndex": 182, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 182, + "endIndex": 183, + "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" + } + } + }, + { + "startIndex": 182, + "endIndex": 183, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 121, + "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" + } + } + }, + { + "endIndex": 121, + "textRun": { + "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "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" + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 92, + "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" + } + } + }, + { + "endIndex": 92, + "textRun": { + "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 92, + "endIndex": 93, + "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" + } + } + }, + { + "startIndex": 92, + "endIndex": 93, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 93, + "endIndex": 199, + "textRun": { + "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 167, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 167, + "textRun": { + "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 167, + "endIndex": 168, + "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" + } + } + }, + { + "startIndex": 167, + "endIndex": 168, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 168, + "endIndex": 258, + "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" + } + } + }, + { + "startIndex": 168, + "endIndex": 258, + "textRun": { + "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "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" + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 259, + "endIndex": 467, + "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" + } + } + }, + { + "startIndex": 259, + "endIndex": 467, + "textRun": { + "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 467, + "endIndex": 468, + "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" + } + } + }, + { + "startIndex": 467, + "endIndex": 468, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 468, + "endIndex": 540, + "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" + } + } + }, + { + "startIndex": 468, + "endIndex": 540, + "textRun": { + "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 108, + "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" + } + } + }, + { + "endIndex": 108, + "textRun": { + "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 108, + "endIndex": 109, + "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" + } + } + }, + { + "startIndex": 108, + "endIndex": 109, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 109, + "endIndex": 202, + "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" + } + } + }, + { + "startIndex": 109, + "endIndex": 202, + "textRun": { + "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "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" + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g2117e6dac59_1_42", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g2117e6dac59_1_43", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g2117e6dac59_1_40:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g2117e6dac59_1_44", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g2117e6dac59_1_45", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g2117e6dac59_1_45" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g1d1402d483f_0_0", + "pageElements": [ + { + "objectId": "g1d1402d483f_0_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.1776, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 61, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 61, + "textRun": { + "content": "Takeaways from User Testing #3 (with Haoqi)\n", + "style": {} + } + }, + { + "startIndex": 61, + "endIndex": 62, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 61, + "endIndex": 62, + "textRun": { + "content": "\n", + "style": { + "bold": true, + "italic": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g1d1402d483f_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g1d1402d483f_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g1d1402d483f_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g1d1402d483f_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g1d1402d483f_0_4", + "pageElements": [ + { + "objectId": "g1d1402d483f_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 2, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 498850, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "Mind Dump / “Off the top”\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 128, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 127, + "textRun": { + "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 127, + "endIndex": 128, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 49, + "textRun": { + "content": "Restate your Problem Statement + Design Argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 49, + "endIndex": 136, + "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" + } + } + }, + { + "startIndex": 49, + "endIndex": 135, + "textRun": { + "content": "What was your problem statement and design argument that you tested in this user test?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 135, + "endIndex": 136, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "Testing Scenario + Measures", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 28, + "endIndex": 121, + "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" + } + } + }, + { + "startIndex": 28, + "endIndex": 120, + "textRun": { + "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 120, + "endIndex": 121, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Individual Key Insights", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 94, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 93, + "textRun": { + "content": "As individuals, where were some insights you had from the user test? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 94, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 35, + "textRun": { + "content": "Synthesize Key Insights as a Group\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 35, + "endIndex": 76, + "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" + } + } + }, + { + "startIndex": 35, + "endIndex": 76, + "textRun": { + "content": "As a group, what were your key insights?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 498850, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 4266450, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Problem statement: \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 110, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 110, + "textRun": { + "content": "Mentors face abstraction challenges when they try to script for ill-structured problems. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 110, + "endIndex": 111, + "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" + } + } + }, + { + "startIndex": 110, + "endIndex": 111, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 111, + "endIndex": 189, + "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" + } + } + }, + { + "startIndex": 111, + "endIndex": 189, + "textRun": { + "content": "For this slice, we’re focusing on the problem of underscoped on root causes. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 189, + "endIndex": 221, + "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" + } + } + }, + { + "startIndex": 189, + "endIndex": 221, + "textRun": { + "content": "It’s often hard for mentors to \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 221, + "endIndex": 222, + "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" + } + } + }, + { + "startIndex": 221, + "endIndex": 222, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 222, + "endIndex": 223, + "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" + } + } + }, + { + "startIndex": 222, + "endIndex": 223, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 9, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 123, + "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" + } + } + }, + { + "endIndex": 123, + "textRun": { + "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "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" + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 124, + "endIndex": 216, + "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" + } + } + }, + { + "startIndex": 124, + "endIndex": 210, + "textRun": { + "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 210, + "endIndex": 216, + "textRun": { + "content": " Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 216, + "endIndex": 217, + "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" + } + } + }, + { + "startIndex": 216, + "endIndex": 217, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "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" + } + } + }, + { + "startIndex": 217, + "endIndex": 218, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ], + "lists": { + "kix.co5ukh9un64i": { + "listId": "kix.co5ukh9un64i", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.eg76jxd69d": { + "listId": "kix.eg76jxd69d", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.jd1po5vu03j4": { + "listId": "kix.jd1po5vu03j4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "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" + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "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" + } + } + }, + { + "startIndex": 1, + "endIndex": 2, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "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" + } + } + }, + { + "startIndex": 2, + "endIndex": 3, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 56, + "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" + } + } + }, + { + "endIndex": 56, + "textRun": { + "content": "Synthesize a list of 4-5 key insights across your team.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "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" + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 57, + "endIndex": 58, + "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" + } + } + }, + { + "startIndex": 57, + "endIndex": 58, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 4266450, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g1d1402d483f_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 51, + "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" + } + } + }, + { + "endIndex": 50, + "textRun": { + "content": "Mysore Template: Quick Takeaways from User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 50, + "endIndex": 51, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g1d1402d483f_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g1d1402d483f_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g1d1402d483f_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g1d1402d483f_0_9", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g1d1402d483f_0_9" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g1d1402d483f_0_10", + "pageElements": [ + { + "objectId": "g1d1402d483f_0_11", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 630875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Outcome of User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 24, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 24, + "endIndex": 85, + "textRun": { + "content": "What were you specifically trying to test in your user tests?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "User Testing Participants", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 67, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 66, + "textRun": { + "content": "Did you get the participants you wanted?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 67, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "User Test Scenario\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 133, + "textRun": { + "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "High-Level Findings\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 171, + "textRun": { + "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 630875, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2607800, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 138, + "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" + } + } + }, + { + "endIndex": 138, + "textRun": { + "content": "Whether user will be able to compose the correct script for a specified situation (or something close to the correct script that works). \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 138, + "endIndex": 139, + "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" + } + } + }, + { + "startIndex": 138, + "endIndex": 139, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 6, + "textRun": { + "content": "Yes. \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "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" + } + } + }, + { + "startIndex": 6, + "endIndex": 7, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 7, + "endIndex": 172, + "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" + } + } + }, + { + "startIndex": 7, + "endIndex": 172, + "textRun": { + "content": "Li is not a mentor, but we’re trying to expand our user group to include students, so it’s really valuable to test with a student who have not used our tool before.\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 118, + "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" + } + } + }, + { + "endIndex": 118, + "textRun": { + "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 118, + "endIndex": 119, + "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" + } + } + }, + { + "startIndex": 118, + "endIndex": 119, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 119, + "endIndex": 181, + "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" + } + } + }, + { + "startIndex": 119, + "endIndex": 181, + "textRun": { + "content": "Strategy: open-ended, (e.g. send out slack message to mentor)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 181, + "endIndex": 182, + "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" + } + } + }, + { + "startIndex": 181, + "endIndex": 182, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 182, + "endIndex": 183, + "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" + } + } + }, + { + "startIndex": 182, + "endIndex": 183, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2607800, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1573325, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 121, + "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" + } + } + }, + { + "endIndex": 121, + "textRun": { + "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "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" + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "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" + } + } + }, + { + "startIndex": 122, + "endIndex": 123, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 92, + "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" + } + } + }, + { + "endIndex": 92, + "textRun": { + "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 92, + "endIndex": 93, + "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" + } + } + }, + { + "startIndex": 92, + "endIndex": 93, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 93, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 93, + "endIndex": 199, + "textRun": { + "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 167, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 167, + "textRun": { + "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 167, + "endIndex": 168, + "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" + } + } + }, + { + "startIndex": 167, + "endIndex": 168, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 168, + "endIndex": 258, + "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" + } + } + }, + { + "startIndex": 168, + "endIndex": 258, + "textRun": { + "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "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" + } + } + }, + { + "startIndex": 258, + "endIndex": 259, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 259, + "endIndex": 467, + "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" + } + } + }, + { + "startIndex": 259, + "endIndex": 467, + "textRun": { + "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 467, + "endIndex": 468, + "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" + } + } + }, + { + "startIndex": 467, + "endIndex": 468, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 468, + "endIndex": 540, + "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" + } + } + }, + { + "startIndex": 468, + "endIndex": 540, + "textRun": { + "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 108, + "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" + } + } + }, + { + "endIndex": 108, + "textRun": { + "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 108, + "endIndex": 109, + "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" + } + } + }, + { + "startIndex": 108, + "endIndex": 109, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 109, + "endIndex": 202, + "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" + } + } + }, + { + "startIndex": 109, + "endIndex": 202, + "textRun": { + "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "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" + } + } + }, + { + "startIndex": 202, + "endIndex": 203, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1573325, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g1d1402d483f_0_12", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Reflecting on your User Testing", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g1d1402d483f_0_13", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g1d1402d483f_0_10:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g1d1402d483f_0_14", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g1d1402d483f_0_15", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g1d1402d483f_0_15" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g1155fa25785_0_0", + "pageElements": [ + { + "objectId": "g1155fa25785_0_1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.514, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 17, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Practical Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 17, + "endIndex": 42, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 17, + "endIndex": 42, + "textRun": { + "content": "Organizing Core Findings\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g1155fa25785_0_0:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g1155fa25785_0_2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g1155fa25785_0_3", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g1155fa25785_0_3" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g1155fa25785_0_4", + "pageElements": [ + { + "objectId": "g1155fa25785_0_5", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 4, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 498850, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 16, + "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" + } + } + }, + { + "endIndex": 16, + "textRun": { + "content": "Statement of RQ\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 16, + "endIndex": 197, + "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" + } + } + }, + { + "startIndex": 16, + "endIndex": 197, + "textRun": { + "content": "Typically of the form: Does these design characteristics achieve the desired outcome? How does these design characteristics help to overcome the obstacles to reaching this outcome?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 23, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "What is your finding? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 60, + "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" + } + } + }, + { + "startIndex": 23, + "endIndex": 60, + "textRun": { + "content": "One sentence summary of core finding\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 34, + "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" + } + } + }, + { + "endIndex": 33, + "textRun": { + "content": "Provide Evidence for Core Finding", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 33, + "endIndex": 34, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 81, + "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" + } + } + }, + { + "startIndex": 34, + "endIndex": 80, + "textRun": { + "content": "Relevant tables, figures, charts, quotes, etc.", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 80, + "endIndex": 81, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 33, + "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" + } + } + }, + { + "endIndex": 33, + "textRun": { + "content": "Implications for Design Argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 33, + "endIndex": 124, + "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" + } + } + }, + { + "startIndex": 33, + "endIndex": 123, + "textRun": { + "content": "Based on this finding, what part of your design argument was (1) correct and (2) incorrect", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 123, + "endIndex": 124, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 124, + "endIndex": 125, + "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" + } + } + }, + { + "startIndex": 124, + "endIndex": 125, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 125, + "endIndex": 126, + "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" + } + } + }, + { + "startIndex": 125, + "endIndex": 126, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 36, + "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" + } + } + }, + { + "endIndex": 36, + "textRun": { + "content": "Limitations and Remaining Obstacles\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 101, + "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" + } + } + }, + { + "startIndex": 36, + "endIndex": 101, + "textRun": { + "content": "What parts of your design argument or claims couldn't be tested?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 101, + "endIndex": 172, + "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" + } + } + }, + { + "startIndex": 101, + "endIndex": 172, + "textRun": { + "content": "What new obstacles were encountered for reaching the desired outcomes?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 498850, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1644725, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "RQ about outcomes\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.i113f9cri0bo": { + "listId": "kix.i113f9cri0bo", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.s9sznpijevks": { + "listId": "kix.s9sznpijevks", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "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" + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "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" + } + } + }, + { + "startIndex": 1, + "endIndex": 2, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "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" + } + } + }, + { + "startIndex": 2, + "endIndex": 3, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 105, + "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" + } + } + }, + { + "endIndex": 105, + "textRun": { + "content": "Perhaps a table or a chart, that shows that the problem has been overcome (i.e., the outcome is reached)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "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" + } + } + }, + { + "startIndex": 105, + "endIndex": 106, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 106, + "endIndex": 107, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.jd1po5vu03j4": { + "listId": "kix.jd1po5vu03j4", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 42, + "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" + } + } + }, + { + "endIndex": 42, + "textRun": { + "content": "Describe correct parts of design argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 42, + "endIndex": 43, + "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" + } + } + }, + { + "startIndex": 42, + "endIndex": 43, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 43, + "endIndex": 44, + "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" + } + } + }, + { + "startIndex": 43, + "endIndex": 44, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 44, + "endIndex": 45, + "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" + } + } + }, + { + "startIndex": 44, + "endIndex": 45, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 45, + "endIndex": 89, + "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" + } + } + }, + { + "startIndex": 45, + "endIndex": 89, + "textRun": { + "content": "Describe incorrect parts of design argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 89, + "endIndex": 90, + "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" + } + } + }, + { + "startIndex": 89, + "endIndex": 90, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "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" + } + } + }, + { + "startIndex": 90, + "endIndex": 91, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 33, + "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" + } + } + }, + { + "endIndex": 33, + "textRun": { + "content": "Describe what couldn't be tested\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 33, + "endIndex": 34, + "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" + } + } + }, + { + "startIndex": 33, + "endIndex": 34, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "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" + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 35, + "endIndex": 36, + "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" + } + } + }, + { + "startIndex": 35, + "endIndex": 36, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 55, + "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" + } + } + }, + { + "startIndex": 36, + "endIndex": 54, + "textRun": { + "content": "Describe obstacles", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 54, + "endIndex": 55, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1644725, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1347550, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "RQ about mechanisms\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 152, + "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" + } + } + }, + { + "endIndex": 152, + "textRun": { + "content": "Perhaps an example or quote, that helps to illustrate how one of the core distinguishing characteristics supported solving the problem (the mechanisms)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 152, + "endIndex": 153, + "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" + } + } + }, + { + "startIndex": 152, + "endIndex": 153, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 42, + "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" + } + } + }, + { + "endIndex": 42, + "textRun": { + "content": "Describe correct parts of design argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 42, + "endIndex": 43, + "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" + } + } + }, + { + "startIndex": 42, + "endIndex": 43, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 43, + "endIndex": 44, + "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" + } + } + }, + { + "startIndex": 43, + "endIndex": 44, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 44, + "endIndex": 45, + "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" + } + } + }, + { + "startIndex": 44, + "endIndex": 45, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 45, + "endIndex": 89, + "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" + } + } + }, + { + "startIndex": 45, + "endIndex": 89, + "textRun": { + "content": "Describe incorrect parts of design argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 89, + "endIndex": 90, + "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" + } + } + }, + { + "startIndex": 89, + "endIndex": 90, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 33, + "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" + } + } + }, + { + "endIndex": 33, + "textRun": { + "content": "Describe what couldn't be tested\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 33, + "endIndex": 34, + "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" + } + } + }, + { + "startIndex": 33, + "endIndex": 34, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "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" + } + } + }, + { + "startIndex": 34, + "endIndex": 35, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 35, + "endIndex": 36, + "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" + } + } + }, + { + "startIndex": 35, + "endIndex": 36, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 55, + "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" + } + } + }, + { + "startIndex": 36, + "endIndex": 55, + "textRun": { + "content": "Describe obstacles\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1347550, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1080500, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 87, + "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" + } + } + }, + { + "endIndex": 87, + "textRun": { + "content": "✅/❌ Have you created an RQ about mechanisms, or how characteristic overcomes obstacle?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 76, + "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" + } + } + }, + { + "endIndex": 76, + "textRun": { + "content": "✅/❌ Could what you wrote be used as a topic sentence in a results section?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 76, + "endIndex": 77, + "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" + } + } + }, + { + "startIndex": 76, + "endIndex": 77, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 77, + "endIndex": 179, + "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" + } + } + }, + { + "startIndex": 77, + "endIndex": 179, + "textRun": { + "content": "✅/❌ Have you written findings for both the outcome (does it work), and the mechanism (why it works)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 97, + "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" + } + } + }, + { + "endIndex": 97, + "textRun": { + "content": "✅/❌ Have you presented or explained the evidence, rather than just showing/listing the measure?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "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" + } + } + }, + { + "startIndex": 97, + "endIndex": 98, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 4, + "textRun": { + "content": "✅/❌ ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 4, + "endIndex": 5, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 4, + "textRun": { + "content": "✅/❌ ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 4, + "endIndex": 5, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.4, + "green": 0.4, + "blue": 0.4 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1080500, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "g1155fa25785_0_6", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 34, + "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" + } + } + }, + { + "endIndex": 33, + "textRun": { + "content": "Mysore Template: Findings/Results", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 33, + "endIndex": 34, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "g1155fa25785_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "g1155fa25785_0_4:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "g1155fa25785_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "g1155fa25785_0_9", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "g1155fa25785_0_9" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_113", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_114", + "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": 9, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 9, + "textRun": { + "content": "Planning\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 9, + "endIndex": 45, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 9, + "endIndex": 44, + "textRun": { + "content": "Risk Assessment and Troubleshooting", + "style": {} + } + }, + { + "startIndex": 44, + "endIndex": 45, + "textRun": { + "content": "\n", + "style": { + "bold": true + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_113:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_115", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_116", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_116" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_117", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_118", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 606925, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 2, + "tableRows": [ + { + "rowHeight": { + "magnitude": 1512200, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 25, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Reflect on your learning\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 107, + "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" + } + } + }, + { + "startIndex": 25, + "endIndex": 107, + "textRun": { + "content": "What new things did you learn last week about your problem, users, designs, etc.?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.pm2gxt1dmu7h": { + "listId": "kix.pm2gxt1dmu7h", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1512200, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1512200, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "Gaps in your understanding\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 142, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 142, + "textRun": { + "content": "Based on your write-up of your current understanding, what gaps or risks do you still have in your understanding? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 142, + "endIndex": 143, + "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" + } + } + }, + { + "startIndex": 142, + "endIndex": 143, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 143, + "endIndex": 222, + "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" + } + } + }, + { + "startIndex": 143, + "endIndex": 222, + "textRun": { + "content": "Why are they risks (i.e., why are they important to address before moving on)?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 222, + "endIndex": 223, + "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" + } + } + }, + { + "startIndex": 222, + "endIndex": 223, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 223, + "endIndex": 296, + "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" + } + } + }, + { + "startIndex": 223, + "endIndex": 296, + "textRun": { + "content": "(Hint: have you answered all the scaffolding questions for each prompt?)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.spscosx982zh": { + "listId": "kix.spscosx982zh", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1512200, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1512200, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "Prioritizing Risks\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 111, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 111, + "textRun": { + "content": "What are the 1-2 risks that are the most important to address in the following sprint? Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.w0r4mja39gtj": { + "listId": "kix.w0r4mja39gtj", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1512200, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1976025, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2549550, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_119", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.499, + "scaleY": 0.0918, + "translateY": 331700.185, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 46, + "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" + } + } + }, + { + "endIndex": 45, + "textRun": { + "content": "Assessing Current Risks in Your Understanding", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 45, + "endIndex": 46, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_120", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.0918, + "translateX": 4572000, + "translateY": 331497.87, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Planning Your Next Sprint", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 26, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 8, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_121", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateX": 4572000, + "translateY": 606923.8875, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 2, + "tableRows": [ + { + "rowHeight": { + "magnitude": 1512200, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 25, + "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" + } + } + }, + { + "endIndex": 25, + "textRun": { + "content": "Goal of your next sprint\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 25, + "endIndex": 103, + "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" + } + } + }, + { + "startIndex": 25, + "endIndex": 103, + "textRun": { + "content": "What do you need to do to address the risks that you prioritized on the left?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "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" + } + } + }, + { + "startIndex": 103, + "endIndex": 104, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 104, + "endIndex": 155, + "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" + } + } + }, + { + "startIndex": 104, + "endIndex": 155, + "textRun": { + "content": "What do you already know, and what don’t you know?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 155, + "endIndex": 156, + "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" + } + } + }, + { + "startIndex": 155, + "endIndex": 156, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 156, + "endIndex": 231, + "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" + } + } + }, + { + "startIndex": 156, + "endIndex": 231, + "textRun": { + "content": "What is a deliverable you could work towards that would address this risk?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.j99w4xk6070m": { + "listId": "kix.j99w4xk6070m", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.pm2gxt1dmu7h": { + "listId": "kix.pm2gxt1dmu7h", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.rx3k85e9ilce": { + "listId": "kix.rx3k85e9ilce", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.yq43m1osz8ba": { + "listId": "kix.yq43m1osz8ba", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1512200, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1512200, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "Roadblocks to meeting goal\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 84, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 84, + "textRun": { + "content": "What might go wrong in trying to address your risk? Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 84, + "endIndex": 85, + "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" + } + } + }, + { + "startIndex": 84, + "endIndex": 85, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 161, + "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" + } + } + }, + { + "startIndex": 85, + "endIndex": 161, + "textRun": { + "content": "What have you tried already to address this risk? Why has that not worked? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.spscosx982zh": { + "listId": "kix.spscosx982zh", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + }, + "kix.uv117p62fl0i": { + "listId": "kix.uv117p62fl0i", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1512200, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1512200, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 44, + "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" + } + } + }, + { + "endIndex": 44, + "textRun": { + "content": "Strategies to overcome potential roadblocks\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 44, + "endIndex": 235, + "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" + } + } + }, + { + "startIndex": 44, + "endIndex": 235, + "textRun": { + "content": "What are some ways that you can work to address your risks, given the obstacles above and the constraints of the 1-week sprint? (e.g., are there different needfinding methods you could try?)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 235, + "endIndex": 236, + "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" + } + } + }, + { + "startIndex": 235, + "endIndex": 236, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 236, + "endIndex": 388, + "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" + } + } + }, + { + "startIndex": 236, + "endIndex": 388, + "textRun": { + "content": "What are specific tasks you might do? What would be the deliverable of each of those tasks? How would they contribute to your overall goal/deliverable?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.w0r4mja39gtj": { + "listId": "kix.w0r4mja39gtj", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + } + } + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 1, + "green": 1, + "blue": 1 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1512200, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2047875, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2524125, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_122", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 46, + "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" + } + } + }, + { + "endIndex": 45, + "textRun": { + "content": "Mysore Template: Risk Assessment and Planning", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 45, + "endIndex": 46, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_123", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_117:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_124", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_125", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_125" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_126", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_127", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 349202.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 430300, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "Goal\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 5, + "endIndex": 75, + "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" + } + } + }, + { + "startIndex": 5, + "endIndex": 75, + "textRun": { + "content": "What do you want to learn this week or sprint? Why is this important?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 32, + "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" + } + } + }, + { + "endIndex": 32, + "textRun": { + "content": "Roadblocks to meeting your goal\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 32, + "endIndex": 83, + "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" + } + } + }, + { + "startIndex": 32, + "endIndex": 83, + "textRun": { + "content": "What might go wrong in trying meet your goal? Why?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 122, + "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" + } + } + }, + { + "endIndex": 43, + "textRun": { + "content": "Strategies to overcome potential roadblocks", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 43, + "endIndex": 44, + "textRun": { + "content": "\u000b", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 44, + "endIndex": 121, + "textRun": { + "content": "What are some ways that you might overcome your obstacles to meet your goal? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 121, + "endIndex": 122, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 96, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Argument for success", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "textRun": { + "content": "\u000b", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 95, + "textRun": { + "content": "Why might your strategy to overcome the potential roadblock be successful?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 95, + "endIndex": 96, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 430300, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2876225, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2876225, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1439200, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 65, + "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" + } + } + }, + { + "endIndex": 65, + "textRun": { + "content": "✅/❌ Do you state what you know already and what you don’t know? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 65, + "endIndex": 66, + "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" + } + } + }, + { + "startIndex": 65, + "endIndex": 66, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 179, + "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" + } + } + }, + { + "startIndex": 66, + "endIndex": 179, + "textRun": { + "content": "✅/❌ Do you state why you want to learn this new thing and why it would be helpful to your project/understanding?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 179, + "endIndex": 180, + "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" + } + } + }, + { + "startIndex": 179, + "endIndex": 180, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 180, + "endIndex": 373, + "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" + } + } + }, + { + "startIndex": 180, + "endIndex": 273, + "textRun": { + "content": "✅/❌ Do you state what success or a set of deliverables would look like if you met your goal? ", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 273, + "endIndex": 372, + "textRun": { + "content": "(hint: think about ways you could meet your goal as stated, but NOT learn what you wanted to learn)", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 372, + "endIndex": 373, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 79, + "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" + } + } + }, + { + "endIndex": 79, + "textRun": { + "content": "✅/❌ Do you state why each roadblock might prevent you from reaching your goal?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 79, + "endIndex": 80, + "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" + } + } + }, + { + "startIndex": 79, + "endIndex": 80, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 80, + "endIndex": 215, + "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" + } + } + }, + { + "startIndex": 80, + "endIndex": 215, + "textRun": { + "content": "✅/❌ Is each roadblock specific enough that you can consider a potential solution later on? (if not, consider breaking it down further)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 215, + "endIndex": 216, + "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" + } + } + }, + { + "startIndex": 215, + "endIndex": 216, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 216, + "endIndex": 318, + "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" + } + } + }, + { + "startIndex": 216, + "endIndex": 318, + "textRun": { + "content": "✅/❌ Do you include previous approaches to meeting your goal, and why those have not been successful? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 65, + "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" + } + } + }, + { + "endIndex": 65, + "textRun": { + "content": "✅/❌ Does your strategy include specific tasks that you might do?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 65, + "endIndex": 66, + "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" + } + } + }, + { + "startIndex": 65, + "endIndex": 66, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 66, + "endIndex": 172, + "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" + } + } + }, + { + "startIndex": 66, + "endIndex": 172, + "textRun": { + "content": "✅/❌ Does your strategy include specific deliverables that align with the deliverables in the Goal column?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 172, + "endIndex": 173, + "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" + } + } + }, + { + "startIndex": 172, + "endIndex": 173, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 173, + "endIndex": 280, + "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" + } + } + }, + { + "startIndex": 173, + "endIndex": 280, + "textRun": { + "content": "✅/❌ Does your strategy consider potential constraints of your sprint? (e.g., time available during 1-week)\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 137, + "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" + } + } + }, + { + "endIndex": 137, + "textRun": { + "content": "✅/❌ Look back at the goal and roadblocks columns. Do you argue for why your strategies will overcome those roadblocks to meet your goal?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 137, + "endIndex": 138, + "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" + } + } + }, + { + "startIndex": 137, + "endIndex": 138, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 138, + "endIndex": 317, + "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" + } + } + }, + { + "startIndex": 138, + "endIndex": 317, + "textRun": { + "content": "✅/❌ Is your proposed strategy unique from or a sufficient advancement on previous unsuccessful approaches? In other words, could it still fail based on what you tried previously?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1439200, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gcbd9fbfbdf_0_128", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 49, + "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" + } + } + }, + { + "endIndex": 48, + "textRun": { + "content": "Mysore Template: Troubleshooting Your __________", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 48, + "endIndex": 49, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_129", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_126:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_130", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_131", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_131" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_132", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_133", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 44, + "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" + } + } + }, + { + "endIndex": 43, + "textRun": { + "content": "Mysore Template: Planning for Status Update", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 43, + "endIndex": 44, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_134", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_135", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 349202.5, + "unit": "EMU" + }, + "table": { + "rows": 2, + "columns": 5, + "tableRows": [ + { + "rowHeight": { + "magnitude": 521275, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 92, + "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" + } + } + }, + { + "endIndex": 92, + "textRun": { + "content": "What risks do you see in your project? What would you want to learn to address these risks?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 30, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Who’s there that can help me?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 29, + "endIndex": 30, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 100, + "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" + } + } + }, + { + "endIndex": 100, + "textRun": { + "content": "Where could you get help from them? Why/why not would status update be a good place for your risks?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 70, + "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" + } + } + }, + { + "endIndex": 69, + "textRun": { + "content": "What is the minimal amount of my project they need to see to help me?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 68, + "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" + } + } + }, + { + "endIndex": 68, + "textRun": { + "content": "What’s a status update plan that will help you address your risks? \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 521275, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 4273025, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 94, + "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" + } + } + }, + { + "endIndex": 94, + "textRun": { + "content": "What are example status updates people have gotten a lot out of? Do I have a need like those?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": { + "red": 0.7176471, + "green": 0.7176471, + "blue": 0.7176471 + } + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 4273025, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 1828800, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_132:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_136", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_137", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_137" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_138", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_139", + "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": 18, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Conceptual Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 18, + "endIndex": 38, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 18, + "endIndex": 38, + "textRun": { + "content": "Conceptual Approach\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_138:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_140", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_141", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_141" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_142", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_143", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 3.048, + "scaleY": 0.1909, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 23, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Approach Tree [Part 1]\n", + "style": { + "bold": true, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p4_i0" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_144", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6683, + "scaleY": 0.3428, + "translateX": 51775, + "translateY": 2458550, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 55, + "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" + } + } + }, + { + "endIndex": 55, + "textRun": { + "content": "2. What is a class of problems researchers care about?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 55, + "endIndex": 56, + "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" + } + } + }, + { + "startIndex": 55, + "endIndex": 56, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_145", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6683, + "scaleY": 0.3428, + "translateX": 51775, + "translateY": 1144700, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 33, + "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" + } + } + }, + { + "endIndex": 33, + "textRun": { + "content": "1.What is at issue in the field?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 33, + "endIndex": 34, + "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" + } + } + }, + { + "startIndex": 33, + "endIndex": 34, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_146", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6683, + "scaleY": 0.3428, + "translateX": 51775, + "translateY": 3772400, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 35, + "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" + } + } + }, + { + "endIndex": 35, + "textRun": { + "content": "2b. What are the desired outcomes?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 35, + "endIndex": 36, + "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" + } + } + }, + { + "startIndex": 35, + "endIndex": 36, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_147", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.772, + "scaleY": 0.3428, + "translateX": 2348875, + "translateY": 800125, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 68, + "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" + } + } + }, + { + "endIndex": 68, + "textRun": { + "content": "3. What’s a general approach for addressing this class of problems?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 68, + "endIndex": 78, + "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" + } + } + }, + { + "startIndex": 68, + "endIndex": 78, + "textRun": { + "content": "[FARTHER]\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 78, + "endIndex": 79, + "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" + } + } + }, + { + "startIndex": 78, + "endIndex": 79, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_148", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 2348875, + "translateY": 1841375, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "FARTHER APPROACH #1\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "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" + } + } + }, + { + "startIndex": 21, + "endIndex": 22, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_149", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 3506875, + "translateY": 1834950, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "OBSTACLES FACED #1\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_150", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 2348875, + "translateY": 2869775, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "FARTHER APPROACH #2\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_151", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 2348875, + "translateY": 3898175, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "FARTHER APPROACH #3\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_152", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 3506875, + "translateY": 2869775, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "OBSTACLES FACED #2\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_153", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 3506875, + "translateY": 3898175, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "OBSTACLES FACED #3\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_154", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.772, + "scaleY": 0.3428, + "translateX": 4664875, + "translateY": 800125, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 68, + "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" + } + } + }, + { + "endIndex": 68, + "textRun": { + "content": "4. What’s a general approach for addressing this class of problems?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 68, + "endIndex": 77, + "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" + } + } + }, + { + "startIndex": 68, + "endIndex": 77, + "textRun": { + "content": "[CLOSER]\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_155", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 4664875, + "translateY": 1841375, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "CLOSER APPROACH #1\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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" + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "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" + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_156", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 5822875, + "translateY": 1834950, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "OBSTACLES FACED #1\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_157", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 4664875, + "translateY": 2869775, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "CLOSER APPROACH #2\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_158", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 4664875, + "translateY": 3898175, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "CLOSER APPROACH #3\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_159", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 5822875, + "translateY": 2869775, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "OBSTACLES FACED #2\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_160", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.386, + "scaleY": 0.3428, + "translateX": 5822875, + "translateY": 3898175, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "OBSTACLES FACED #3\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_161", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6683, + "scaleY": 0.2128, + "translateX": 51775, + "translateY": 506200, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 37, + "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" + } + } + }, + { + "endIndex": 37, + "textRun": { + "content": "Class of Problems & Desired Outcomes\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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_162", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.544, + "scaleY": 0.098, + "translateX": 2348875, + "translateY": 506125, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 29, + "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" + } + } + }, + { + "endIndex": 29, + "textRun": { + "content": "Why Existing Approaches Fail\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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_163", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6416, + "scaleY": 0.098, + "translateX": 7137700, + "translateY": 506200, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "New Understanding\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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_164", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6416, + "scaleY": 0.6242, + "translateX": 7137700, + "translateY": 879375, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 38, + "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" + } + } + }, + { + "endIndex": 38, + "textRun": { + "content": "5a. What new understanding is needed?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gf266c01b2a_0_7", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6416, + "scaleY": 0.6242, + "translateX": 7137700, + "translateY": 3058650, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "5b. Your Research Question", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 27, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_142:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_166", + "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": "gcbd9fbfbdf_0_167", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_167" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_168", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_169", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 3.0579, + "scaleY": 0.1909, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 23, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Approach Tree [Part 2]\n", + "style": { + "bold": true, + "fontSize": { + "magnitude": 9, + "unit": "PT" + } + } + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p4_i0" + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_170", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.2357, + "scaleY": 0.3428, + "translateX": 73200, + "translateY": 1973150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 56, + "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" + } + } + }, + { + "endIndex": 56, + "textRun": { + "content": "6b. What are relevant theories + principles it applies?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "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" + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_171", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.2357, + "scaleY": 0.3428, + "translateX": 73200, + "translateY": 902175, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 38, + "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" + } + } + }, + { + "endIndex": 38, + "textRun": { + "content": "6a. What is your conceptual approach?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 38, + "endIndex": 39, + "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" + } + } + }, + { + "startIndex": 38, + "endIndex": 39, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_172", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.2357, + "scaleY": 0.3428, + "translateX": 73200, + "translateY": 4115100, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 59, + "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" + } + } + }, + { + "endIndex": 58, + "textRun": { + "content": "6d. What’s the new conceptual understanding + implication?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 58, + "endIndex": 59, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_173", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.8306, + "scaleY": 0.3428, + "translateX": 4153275, + "translateY": 1017725, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 68, + "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" + } + } + }, + { + "endIndex": 68, + "textRun": { + "content": "7. What’s the technical need for realizing the conceptual approach?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "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" + } + } + }, + { + "startIndex": 68, + "endIndex": 69, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_174", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.4153, + "scaleY": 0.3428, + "translateX": 4153275, + "translateY": 2049340.63, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "EXISTING TECH APPROACH #1\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 26, + "endIndex": 27, + "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" + } + } + }, + { + "startIndex": 26, + "endIndex": 27, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "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" + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_175", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.4153, + "scaleY": 0.3428, + "translateX": 5399137.715, + "translateY": 2049340.63, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "OBSTACLES FACED #1\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_176", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.4153, + "scaleY": 0.3428, + "translateX": 4153275, + "translateY": 3080956.2600000002, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 26, + "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" + } + } + }, + { + "endIndex": 26, + "textRun": { + "content": "EXISTING TECH APPROACH #2\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_177", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.8306, + "scaleY": 0.3428, + "translateX": 4153275, + "translateY": 4109021.8800000004, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 53, + "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" + } + } + }, + { + "endIndex": 53, + "textRun": { + "content": "Given these obstacles, what new technique is needed?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_178", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.4153, + "scaleY": 0.3428, + "translateX": 5399137.715, + "translateY": 3080956.2600000002, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "OBSTACLES FACED #2\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_179", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.642, + "scaleY": 0.098, + "translateX": 73200, + "translateY": 529450, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Conceptual Approach\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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_180", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.544, + "scaleY": 0.098, + "translateX": 4153275, + "translateY": 723725, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "Technical Approach\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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_181", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.2357, + "scaleY": 0.3428, + "translateX": 73200, + "translateY": 3044125, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 63, + "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" + } + } + }, + { + "endIndex": 63, + "textRun": { + "content": "6c. What’s your research argument for why this approach works?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 63, + "endIndex": 64, + "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" + } + } + }, + { + "startIndex": 63, + "endIndex": 64, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_182", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.6172, + "scaleY": 0.2226, + "translateX": 4151775, + "translateY": 55925, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "5b. Your Research Question\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_183", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7861, + "scaleY": 0.3428, + "translateX": 6645000.4275, + "translateY": 2049340.63, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 58, + "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" + } + } + }, + { + "endIndex": 58, + "textRun": { + "content": "7b. What are relevant technical ideas+methods it applies?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 58, + "endIndex": 59, + "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" + } + } + }, + { + "startIndex": 58, + "endIndex": 59, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_184", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7861, + "scaleY": 0.3428, + "translateX": 6645000.4275, + "translateY": 1017725, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 37, + "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" + } + } + }, + { + "endIndex": 37, + "textRun": { + "content": "7a. What is your technical approach?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 37, + "endIndex": 38, + "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" + } + } + }, + { + "startIndex": 37, + "endIndex": 38, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_185", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7861, + "scaleY": 0.3428, + "translateX": 6645000.4275, + "translateY": 4109021.8800000004, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 70, + "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" + } + } + }, + { + "endIndex": 69, + "textRun": { + "content": "7d. How does this technical approach realize the conceptual approach?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 69, + "endIndex": 70, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gcbd9fbfbdf_0_186", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7861, + "scaleY": 0.3428, + "translateX": 6645000.4275, + "translateY": 3080956.2600000002, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 64, + "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" + } + } + }, + { + "endIndex": 64, + "textRun": { + "content": "7c. What’s your technical argument for why this approach works?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 64, + "endIndex": 65, + "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" + } + } + }, + { + "startIndex": 64, + "endIndex": 65, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ], + "lists": { + "kix.xged91x4saz8": { + "listId": "kix.xged91x4saz8", + "nestingLevel": { + "0": { + "bulletStyle": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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" + }, + "shadow": { + "type": "OUTER", + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 19050, + "unit": "EMU" + }, + "alignment": "BOTTOM_LEFT", + "blurRadius": { + "magnitude": 38100, + "unit": "EMU" + }, + "color": { + "rgbColor": {} + }, + "alpha": 0.5, + "rotateWithShape": false, + "propertyState": "NOT_RENDERED" + }, + "contentAlignment": "TOP", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gcbd9fbfbdf_0_168:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gcbd9fbfbdf_0_187", + "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": "gcbd9fbfbdf_0_188", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gcbd9fbfbdf_0_188" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gf296502525_0_7", + "pageElements": [ + { + "objectId": "gf296502525_0_8", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 347827.5, + "unit": "EMU" + }, + "table": { + "rows": 5, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 265075, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 28, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "Practical Problem Statement", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 27, + "endIndex": 28, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 16, + "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" + } + } + }, + { + "endIndex": 16, + "textRun": { + "content": "Design Argument\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 27, + "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" + } + } + }, + { + "endIndex": 27, + "textRun": { + "content": "Interface/System Arguments\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Empirical Findings", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 18, + "endIndex": 19, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 265075, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1594600, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1594600, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 265075, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 18, + "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" + } + } + }, + { + "endIndex": 17, + "textRun": { + "content": "Class of Problems", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 17, + "endIndex": 18, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 20, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Conceptual Approach\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 19, + "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" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "Technical Approach\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 21, + "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" + } + } + }, + { + "endIndex": 20, + "textRun": { + "content": "Theoretical Findings", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 20, + "endIndex": 21, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 265075, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1434075, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1434075, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1236875, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 4 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 94, + "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" + } + } + }, + { + "endIndex": 94, + "textRun": { + "content": "✅/❌ Is it clear how your practical problem statement is an instance of the class of problems?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 95, + "endIndex": 199, + "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" + } + } + }, + { + "startIndex": 95, + "endIndex": 199, + "textRun": { + "content": "✅/❌ Is your class of problems sufficiently broad to include problems other than your practical problem?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 199, + "endIndex": 200, + "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" + } + } + }, + { + "startIndex": 199, + "endIndex": 200, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 200, + "endIndex": 354, + "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" + } + } + }, + { + "startIndex": 200, + "endIndex": 354, + "textRun": { + "content": "✅/❌ Is your class of problems appropriately scoped (not too broad), i.e., does your conceptual and technical approach solve *all* problems in this class?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 85, + "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" + } + } + }, + { + "endIndex": 85, + "textRun": { + "content": "✅/❌ Is it clear how your design argument is an instance of your conceptual approach?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "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" + } + } + }, + { + "startIndex": 85, + "endIndex": 86, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 86, + "endIndex": 181, + "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" + } + } + }, + { + "startIndex": 86, + "endIndex": 181, + "textRun": { + "content": "✅/❌ Does your conceptual approach explain how it addresses the class of problems in a new way?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 181, + "endIndex": 182, + "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" + } + } + }, + { + "startIndex": 181, + "endIndex": 182, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 182, + "endIndex": 287, + "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" + } + } + }, + { + "startIndex": 182, + "endIndex": 287, + "textRun": { + "content": "✅/❌ Does your design argument explain how it overcomes obstacles that prior approaches do not or cannot?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 94, + "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" + } + } + }, + { + "endIndex": 94, + "textRun": { + "content": "✅/❌ Is it clear how your interface/system argument is an instance of your technical approach?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "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" + } + } + }, + { + "startIndex": 94, + "endIndex": 95, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 95, + "endIndex": 196, + "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" + } + } + }, + { + "startIndex": 95, + "endIndex": 196, + "textRun": { + "content": "✅/❌ Does your technical approach realize (i.e., make possible) the conceptual approach in a new way?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 196, + "endIndex": 197, + "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" + } + } + }, + { + "startIndex": 196, + "endIndex": 197, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 197, + "endIndex": 302, + "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" + } + } + }, + { + "startIndex": 197, + "endIndex": 302, + "textRun": { + "content": "✅/❌ Is it clear how your technical approach can be implemented to broadly address the class of problems?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 241, + "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" + } + } + }, + { + "endIndex": 241, + "textRun": { + "content": "✅/❌ Is it clear how your empirical findings imply your theoretical findings? That is, are they sufficient for showing that your conceptual/technical approach works on this problem, and suggest that it might, for the whole class of problems?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 241, + "endIndex": 242, + "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" + } + } + }, + { + "startIndex": 241, + "endIndex": 242, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 242, + "endIndex": 384, + "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" + } + } + }, + { + "startIndex": 242, + "endIndex": 384, + "textRun": { + "content": "✅/❌ Does your empirical findings clearly prove the effectiveness of your design/interface/system arguments for solving the practical problem?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 384, + "endIndex": 385, + "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" + } + } + }, + { + "startIndex": 384, + "endIndex": 385, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 7, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1236875, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 5 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 5, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 5, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 5, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 4, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gf296502525_0_9", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.524, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 24, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Mysore Template: 8-Pack", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 24, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gf296502525_0_10", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gf296502525_0_7:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gf296502525_0_11", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gf296502525_0_12", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gf296502525_0_12" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gf266c01b2a_0_8", + "pageElements": [ + { + "objectId": "gf266c01b2a_0_9", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.2497, + "scaleY": 1.3636, + "translateX": 490250, + "translateY": 450150, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 18, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "endIndex": 18, + "textRun": { + "content": "Conceptual Canvas\n", + "style": { + "bold": true + } + } + }, + { + "startIndex": 18, + "endIndex": 54, + "paragraphMarker": { + "style": { + "alignment": "START", + "direction": "LEFT_TO_RIGHT" + } + } + }, + { + "startIndex": 18, + "endIndex": 54, + "textRun": { + "content": "Takeaways and Revised Understanding\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "INHERIT" + }, + "outline": { + "propertyState": "INHERIT" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p8_i0" + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p8", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gf266c01b2a_0_8:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gf266c01b2a_0_10", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381301.345, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gf266c01b2a_0_11", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gf266c01b2a_0_11" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gf266c01b2a_0_12", + "pageElements": [ + { + "objectId": "gf266c01b2a_0_14", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.8194, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 57, + "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" + } + } + }, + { + "endIndex": 56, + "textRun": { + "content": "Mysore Template: Understanding your Conceptual Takeaways", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 56, + "endIndex": 57, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gf266c01b2a_0_13", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 4, + "tableRows": [ + { + "rowHeight": { + "magnitude": 565625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 37, + "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" + } + } + }, + { + "endIndex": 36, + "textRun": { + "content": "Evidence in Support of your Approach", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 37, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 37, + "endIndex": 237, + "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" + } + } + }, + { + "startIndex": 37, + "endIndex": 236, + "textRun": { + "content": "In what ways did the conceptual or technical argument effectively support solving your practical problem? How have you established the usefulness of the conceptual approach on this practical problem?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 236, + "endIndex": 237, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 41, + "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" + } + } + }, + { + "endIndex": 40, + "textRun": { + "content": "Generalizing or Extending the Approaches", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 40, + "endIndex": 41, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 41, + "endIndex": 254, + "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" + } + } + }, + { + "startIndex": 41, + "endIndex": 253, + "textRun": { + "content": "How generalizable is the conceptual or technical approach? In what ways does your takeaways and findings inform questions one may have about how it can be used/extended to solve the class of problems of interest?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 253, + "endIndex": 254, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 10, + "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" + } + } + }, + { + "endIndex": 10, + "textRun": { + "content": "Obstacles\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 10, + "endIndex": 217, + "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" + } + } + }, + { + "startIndex": 10, + "endIndex": 217, + "textRun": { + "content": "In what ways did you find the conceptual or technical arguments limiting? What new obstacles to realizing the concept are discovered in applying your conceptual/technical arguments on the practical problem?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 23, + "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" + } + } + }, + { + "endIndex": 23, + "textRun": { + "content": "Limitations of Testing\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 23, + "endIndex": 120, + "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" + } + } + }, + { + "startIndex": 23, + "endIndex": 120, + "textRun": { + "content": "Which parts of your conceptual approach couldn’t actually be tested with the data you collected?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 565625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2554400, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2554400, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1691975, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "✅/❌ \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "✅/❌ \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "✅/❌ \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "✅/❌ \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1691975, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2286000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 4 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gf266c01b2a_0_15", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gf266c01b2a_0_12:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gf266c01b2a_0_16", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gf266c01b2a_0_17", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gf266c01b2a_0_17" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "gf266c01b2a_0_18", + "pageElements": [ + { + "objectId": "gf266c01b2a_0_19", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1, + "scaleY": 1, + "translateY": 331502.5, + "unit": "EMU" + }, + "table": { + "rows": 3, + "columns": 3, + "tableRows": [ + { + "rowHeight": { + "magnitude": 565625, + "unit": "EMU" + }, + "tableCells": [ + { + "location": {}, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 38, + "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" + } + } + }, + { + "endIndex": 37, + "textRun": { + "content": "New directions: Conceptual Approaches", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 37, + "endIndex": 38, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 38, + "endIndex": 154, + "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" + } + } + }, + { + "startIndex": 38, + "endIndex": 153, + "textRun": { + "content": "Based on the revised understanding, what new research questions/directions may you pursue on conceptual approaches?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 153, + "endIndex": 154, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 37, + "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" + } + } + }, + { + "endIndex": 36, + "textRun": { + "content": "New directions: Technical Approaches", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 36, + "endIndex": 37, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 37, + "endIndex": 152, + "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" + } + } + }, + { + "startIndex": 37, + "endIndex": 151, + "textRun": { + "content": "Based on the revised understanding, what new research questions/directions may you pursue on technical approaches?", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + }, + { + "startIndex": 151, + "endIndex": 152, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "endIndex": 33, + "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" + } + } + }, + { + "endIndex": 33, + "textRun": { + "content": "New direction: Class of Problems\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 33, + "endIndex": 157, + "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" + } + } + }, + { + "startIndex": 33, + "endIndex": 157, + "textRun": { + "content": "Based on the revised understanding, what new research questions/directions may you pursue on the class of problems studied?\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": true, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 565625, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 2554400, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 2554400, + "unit": "EMU" + } + } + }, + { + "rowHeight": { + "magnitude": 1691975, + "unit": "EMU" + }, + "tableCells": [ + { + "location": { + "rowIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "✅/❌ \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "✅/❌ \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "rowSpan": 1, + "columnSpan": 1, + "text": { + "textElements": [ + { + "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" + } + } + }, + { + "endIndex": 5, + "textRun": { + "content": "✅/❌ \n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 6, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 400 + } + } + } + } + ] + }, + "tableCellProperties": { + "tableCellBackgroundFill": { + "propertyState": "NOT_RENDERED", + "solidFill": { + "color": { + "rgbColor": { + "red": 0.8, + "green": 0.8, + "blue": 0.8 + } + }, + "alpha": 1 + } + }, + "contentAlignment": "TOP" + } + } + ], + "tableRowProperties": { + "minRowHeight": { + "magnitude": 1691975, + "unit": "EMU" + } + } + } + ], + "tableColumns": [ + { + "columnWidth": { + "magnitude": 3044025, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 2965800, + "unit": "EMU" + } + }, + { + "columnWidth": { + "magnitude": 3044000, + "unit": "EMU" + } + } + ], + "horizontalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 3, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ], + "verticalBorderRows": [ + { + "tableBorderCells": [ + { + "location": {}, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 1, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + }, + { + "tableBorderCells": [ + { + "location": { + "rowIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 1 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 2 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + }, + { + "location": { + "rowIndex": 2, + "columnIndex": 3 + }, + "tableBorderProperties": { + "tableBorderFill": { + "solidFill": { + "color": { + "rgbColor": { + "red": 0.61960787, + "green": 0.61960787, + "blue": 0.61960787 + } + }, + "alpha": 1 + } + }, + "weight": { + "magnitude": 9525, + "unit": "EMU" + }, + "dashStyle": "SOLID" + } + } + ] + } + ] + } + }, + { + "objectId": "gf266c01b2a_0_20", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.8194, + "scaleY": 0.1105, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 50, + "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" + } + } + }, + { + "endIndex": 50, + "textRun": { + "content": "Mysore Template: Revised Conceptual Understanding\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 50, + "endIndex": 51, + "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" + } + } + }, + { + "startIndex": 50, + "endIndex": 51, + "textRun": { + "content": "\n", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "gf266c01b2a_0_21", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.7621, + "scaleY": 0.1105, + "translateX": 6857575, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 20, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "endIndex": 19, + "textRun": { + "content": "[your name(s) here]", + "style": { + "backgroundColor": {}, + "foregroundColor": { + "opaqueColor": { + "rgbColor": {} + } + }, + "bold": true, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 12, + "unit": "PT" + }, + "baselineOffset": "NONE", + "smallCaps": false, + "strikethrough": false, + "underline": false, + "weightedFontFamily": { + "fontFamily": "Arial", + "weight": 700 + } + } + } + }, + { + "startIndex": 19, + "endIndex": 20, + "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 + } + } + } + } + ] + }, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + } + ], + "slideProperties": { + "layoutObjectId": "p4", + "masterObjectId": "simple-light-2", + "notesPage": { + "objectId": "gf266c01b2a_0_18:notes", + "pageType": "NOTES", + "pageElements": [ + { + "objectId": "gf266c01b2a_0_22", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.032, + "scaleY": 1.143, + "translateX": 381297.595, + "translateY": 685800, + "unit": "EMU" + }, + "shape": { + "shapeProperties": { + "outline": { + "propertyState": "INHERIT" + } + }, + "placeholder": { + "type": "SLIDE_IMAGE", + "parentObjectId": "n:slide" + } + } + }, + { + "objectId": "gf266c01b2a_0_23", + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "index": 1, + "parentObjectId": "n:text" + } + } + } + ], + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + }, + "notesProperties": { + "speakerNotesObjectId": "gf266c01b2a_0_23" + } + } + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + } + ], + "title": "Copy of New [NOT] Orchestration Scripting Environments Practical/Conceptual Research Canvas", + "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.8401999473571777, + "scaleY": 0.19089999794960022, + "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": "COLLAPSE_LISTS" + }, + "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": "COLLAPSE_LISTS" + }, + "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": "COLLAPSE_LISTS" + }, + "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": "COLLAPSE_LISTS" + }, + "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": "COLLAPSE_LISTS" + }, + "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": "COLLAPSE_LISTS" + }, + "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": "COLLAPSE_LISTS" + }, + "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": "COLLAPSE_LISTS" + }, + "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": "COLLAPSE_LISTS" + }, + "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", + "autofit": { + "autofitType": "TEXT_AUTOFIT", + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE" + } + } + }, + { + "objectId": "p1_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.8401999473571777, + "scaleY": 1.1388000249862671, + "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": 12, + "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": { + "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": 12, + "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": { + "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": 12, + "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": { + "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": 12, + "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": { + "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": 12, + "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": { + "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": 12, + "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": { + "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": 12, + "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": { + "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": 12, + "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": { + "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": 12, + "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": { + "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", + "autofit": { + "autofitType": "TEXT_AUTOFIT", + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY" + } + } + }, + { + "objectId": "p1_i2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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": "COLLAPSE_LISTS" + } + } + }, + { + "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", + "autofit": { + "autofitType": "TEXT_AUTOFIT", + "fontScale": 1 + } + }, + "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": 0.25882354, + "green": 0.52156866, + "blue": 0.95686275 + } + }, + { + "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.8401999473571777, + "scaleY": 0.6841999888420105, + "translateX": 311708.349609375, + "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", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "CENTERED_TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p2_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.8401999473571777, + "scaleY": 0.26420000195503235, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "SUBTITLE", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "p2_i2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.8401999473571777, + "scaleY": 0.28060001134872437, + "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", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p3_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.8401999473571777, + "scaleY": 0.19089999794960022, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p4_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.8401999473571777, + "scaleY": 1.1388000249862671, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "p4_i2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.8401999473571777, + "scaleY": 0.19089999794960022, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p5_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.333299994468689, + "scaleY": 1.1388000249862671, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "p5_i2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.333299994468689, + "scaleY": 1.1388000249862671, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.8401999473571777, + "scaleY": 0.19089999794960022, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p6_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.93599998950958252, + "scaleY": 0.25189998745918274, + "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", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p7_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.93599998950958252, + "scaleY": 1.0598000288009644, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "p7_i2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.1226000785827637, + "scaleY": 1.3636000156402588, + "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", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p8_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.5240000486373901, + "scaleY": 1.7144999504089355, + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + } + } + }, + { + "objectId": "p9_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.3483999967575073, + "scaleY": 0.49410000443458557, + "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", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p9_i2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.3483999967575073, + "scaleY": 0.41170001029968262, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "SUBTITLE", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "p9_i3", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.2790000438690186, + "scaleY": 1.2316999435424805, + "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", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "p9_i4", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.9996000528335571, + "scaleY": 0.20170000195503235, + "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", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "p10_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.8401999473571777, + "scaleY": 0.65450000762939453, + "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", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "p11_i1", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.8401999473571777, + "scaleY": 0.43360000848770142, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "p11_i2", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "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.18289999663829803, + "scaleY": 0.13120000064373016, + "translateX": 8472457.8125, + "translateY": 4663216.796875, + "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" + }, + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "SLIDE_NUMBER", + "parentObjectId": "p1_i2" + } + } + } + ], + "layoutProperties": { + "masterObjectId": "simple-light-2", + "name": "BLANK", + "displayName": "Blank" + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g110fcf6167b_6_181", + "pageType": "LAYOUT", + "pageElements": [ + { + "objectId": "g110fcf6167b_6_182", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.6289, + "scaleY": 0.3314, + "translateX": 628650, + "translateY": 273843.75, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 1, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "glyph": " ", + "bulletStyle": {} + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 1, + "endIndex": 2, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 8, + "glyph": " ", + "bulletStyle": {} + } + } + }, + { + "startIndex": 8, + "endIndex": 9, + "textRun": { + "content": "\n", + "style": {} + } + } + ], + "lists": { + "bodyPlaceholderListEntity": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": { + "0": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "1": { + "bulletStyle": {} + }, + "2": { + "bulletStyle": {} + }, + "3": { + "bulletStyle": {} + }, + "4": { + "bulletStyle": {} + }, + "5": { + "bulletStyle": {} + }, + "6": { + "bulletStyle": {} + }, + "7": { + "bulletStyle": {} + }, + "8": { + "bulletStyle": {} + } + } + } + } + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "NOT_RENDERED" + }, + "outline": { + "propertyState": "NOT_RENDERED" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "contentAlignment": "MIDDLE", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "g110fcf6167b_6_183", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.6289, + "scaleY": 1.0878, + "translateX": 628650, + "translateY": 1369218.75, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 1, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 8, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "glyph": "●", + "bulletStyle": {} + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 1, + "endIndex": 2, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 1, + "glyph": "○", + "bulletStyle": {} + } + } + }, + { + "startIndex": 1, + "endIndex": 2, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 2, + "endIndex": 3, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 2, + "glyph": "■", + "bulletStyle": {} + } + } + }, + { + "startIndex": 2, + "endIndex": 3, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 3, + "endIndex": 4, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 3, + "glyph": "●", + "bulletStyle": {} + } + } + }, + { + "startIndex": 3, + "endIndex": 4, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 4, + "endIndex": 5, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 4, + "glyph": "○", + "bulletStyle": {} + } + } + }, + { + "startIndex": 4, + "endIndex": 5, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 5, + "endIndex": 6, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 5, + "glyph": "■", + "bulletStyle": {} + } + } + }, + { + "startIndex": 5, + "endIndex": 6, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 6, + "endIndex": 7, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 6, + "glyph": "●", + "bulletStyle": {} + } + } + }, + { + "startIndex": 6, + "endIndex": 7, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 7, + "endIndex": 8, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 7, + "glyph": "○", + "bulletStyle": {} + } + } + }, + { + "startIndex": 7, + "endIndex": 8, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 8, + "endIndex": 9, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 8, + "glyph": "■", + "bulletStyle": {} + } + } + }, + { + "startIndex": 8, + "endIndex": 9, + "textRun": { + "content": "\n", + "style": {} + } + } + ], + "lists": { + "bodyPlaceholderListEntity": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": { + "0": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "1": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "2": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "3": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "4": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "5": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "6": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "7": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "8": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + } + } + } + } + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "NOT_RENDERED" + }, + "outline": { + "propertyState": "NOT_RENDERED" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "contentAlignment": "TOP", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "g110fcf6167b_6_184", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6858, + "scaleY": 0.0913, + "translateX": 628650, + "translateY": 4767262.5, + "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": { + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "MIDDLE", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + }, + "placeholder": { + "type": "DATE_AND_TIME" + } + } + }, + { + "objectId": "g110fcf6167b_6_185", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.0287, + "scaleY": 0.0913, + "translateX": 3028950, + "translateY": 4767262.5, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 1, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "CENTER", + "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": { + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "NEVER_COLLAPSE" + }, + "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": "MIDDLE", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + }, + "placeholder": { + "type": "FOOTER" + } + } + }, + { + "objectId": "g110fcf6167b_6_186", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6858, + "scaleY": 0.0913, + "translateX": 6457950, + "translateY": 4767262.5, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 2, + "paragraphMarker": { + "style": { + "alignment": "END", + "indentStart": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + } + } + }, + { + "endIndex": 1, + "autoText": { + "type": "SLIDE_NUMBER", + "content": "#", + "style": {} + } + }, + { + "startIndex": 1, + "endIndex": 2, + "textRun": { + "content": "\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "NOT_RENDERED" + }, + "outline": { + "propertyState": "NOT_RENDERED" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "contentAlignment": "MIDDLE", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "SLIDE_NUMBER", + "parentObjectId": "p1_i2" + } + } + } + ], + "layoutProperties": { + "masterObjectId": "simple-light-2", + "name": "OBJECT", + "displayName": "Title and Content" + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + }, + { + "objectId": "g110fcf6167b_6_187", + "pageType": "LAYOUT", + "pageElements": [ + { + "objectId": "g110fcf6167b_6_188", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.6289, + "scaleY": 0.3314, + "translateX": 628650, + "translateY": 273843.75, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 1, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "glyph": " ", + "bulletStyle": {} + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 1, + "endIndex": 2, + "paragraphMarker": { + "style": { + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "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", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 8, + "glyph": " ", + "bulletStyle": {} + } + } + }, + { + "startIndex": 8, + "endIndex": 9, + "textRun": { + "content": "\n", + "style": {} + } + } + ], + "lists": { + "bodyPlaceholderListEntity": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": { + "0": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "1": { + "bulletStyle": {} + }, + "2": { + "bulletStyle": {} + }, + "3": { + "bulletStyle": {} + }, + "4": { + "bulletStyle": {} + }, + "5": { + "bulletStyle": {} + }, + "6": { + "bulletStyle": {} + }, + "7": { + "bulletStyle": {} + }, + "8": { + "bulletStyle": {} + } + } + } + } + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "NOT_RENDERED" + }, + "outline": { + "propertyState": "NOT_RENDERED" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "contentAlignment": "MIDDLE", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "TITLE", + "parentObjectId": "p1_i0" + } + } + }, + { + "objectId": "g110fcf6167b_6_189", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 2.6289, + "scaleY": 1.0878, + "translateX": 628650, + "translateY": 1369218.75, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 1, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 8, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "glyph": "●", + "bulletStyle": {} + } + } + }, + { + "endIndex": 1, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 1, + "endIndex": 2, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 1, + "glyph": "○", + "bulletStyle": {} + } + } + }, + { + "startIndex": 1, + "endIndex": 2, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 2, + "endIndex": 3, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 2, + "glyph": "■", + "bulletStyle": {} + } + } + }, + { + "startIndex": 2, + "endIndex": 3, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 3, + "endIndex": 4, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 3, + "glyph": "●", + "bulletStyle": {} + } + } + }, + { + "startIndex": 3, + "endIndex": 4, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 4, + "endIndex": 5, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 4, + "glyph": "○", + "bulletStyle": {} + } + } + }, + { + "startIndex": 4, + "endIndex": 5, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 5, + "endIndex": 6, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 5, + "glyph": "■", + "bulletStyle": {} + } + } + }, + { + "startIndex": 5, + "endIndex": 6, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 6, + "endIndex": 7, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 6, + "glyph": "●", + "bulletStyle": {} + } + } + }, + { + "startIndex": 6, + "endIndex": 7, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 7, + "endIndex": 8, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 7, + "glyph": "○", + "bulletStyle": {} + } + } + }, + { + "startIndex": 7, + "endIndex": 8, + "textRun": { + "content": "\n", + "style": {} + } + }, + { + "startIndex": 8, + "endIndex": 9, + "paragraphMarker": { + "style": { + "lineSpacing": 90, + "alignment": "START", + "spaceAbove": { + "magnitude": 4, + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + }, + "bullet": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": 8, + "glyph": "■", + "bulletStyle": {} + } + } + }, + { + "startIndex": 8, + "endIndex": 9, + "textRun": { + "content": "\n", + "style": {} + } + } + ], + "lists": { + "bodyPlaceholderListEntity": { + "listId": "bodyPlaceholderListEntity", + "nestingLevel": { + "0": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "1": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "2": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "3": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "4": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "5": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "6": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "7": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + }, + "8": { + "bulletStyle": { + "foregroundColor": { + "opaqueColor": { + "themeColor": "DARK1" + } + }, + "fontSize": { + "magnitude": 14, + "unit": "PT" + } + } + } + } + } + } + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "NOT_RENDERED" + }, + "outline": { + "propertyState": "NOT_RENDERED" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "contentAlignment": "TOP", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "BODY", + "parentObjectId": "p1_i1" + } + } + }, + { + "objectId": "g110fcf6167b_6_190", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6858, + "scaleY": 0.0913, + "translateX": 628650, + "translateY": 4767262.5, + "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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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": "MIDDLE", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + }, + "placeholder": { + "type": "DATE_AND_TIME" + } + } + }, + { + "objectId": "g110fcf6167b_6_191", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 1.0287, + "scaleY": 0.0913, + "translateX": 3028950, + "translateY": 4767262.5, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 1, + "paragraphMarker": { + "style": { + "lineSpacing": 100, + "alignment": "CENTER", + "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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": 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": { + "rgbColor": {} + } + }, + "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": { + "rgbColor": {} + } + }, + "bold": false, + "italic": false, + "fontFamily": "Arial", + "fontSize": { + "magnitude": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 14, + "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": 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": "MIDDLE", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + }, + "placeholder": { + "type": "FOOTER" + } + } + }, + { + "objectId": "g110fcf6167b_6_192", + "size": { + "width": { + "magnitude": 3000000, + "unit": "EMU" + }, + "height": { + "magnitude": 3000000, + "unit": "EMU" + } + }, + "transform": { + "scaleX": 0.6858, + "scaleY": 0.0913, + "translateX": 6457950, + "translateY": 4767262.5, + "unit": "EMU" + }, + "shape": { + "shapeType": "TEXT_BOX", + "text": { + "textElements": [ + { + "endIndex": 2, + "paragraphMarker": { + "style": { + "alignment": "END", + "indentStart": { + "unit": "PT" + }, + "spaceAbove": { + "unit": "PT" + }, + "indentFirstLine": { + "unit": "PT" + }, + "direction": "LEFT_TO_RIGHT", + "spacingMode": "NEVER_COLLAPSE" + } + } + }, + { + "endIndex": 1, + "autoText": { + "type": "SLIDE_NUMBER", + "content": "#", + "style": {} + } + }, + { + "startIndex": 1, + "endIndex": 2, + "textRun": { + "content": "\n", + "style": {} + } + } + ] + }, + "shapeProperties": { + "shapeBackgroundFill": { + "propertyState": "NOT_RENDERED" + }, + "outline": { + "propertyState": "NOT_RENDERED" + }, + "shadow": { + "propertyState": "INHERIT" + }, + "contentAlignment": "MIDDLE", + "autofit": { + "fontScale": 1 + } + }, + "placeholder": { + "type": "SLIDE_NUMBER", + "parentObjectId": "p1_i2" + } + } + } + ], + "layoutProperties": { + "masterObjectId": "simple-light-2", + "name": "OBJECT_1", + "displayName": "Title and Content 1" + }, + "pageProperties": { + "pageBackgroundFill": { + "propertyState": "INHERIT" + } + } + } + ], + "locale": "en", + "revisionId": "4KXOeD4gTEhLWg", + "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", + "autofit": { + "autofitType": "NONE", + "fontScale": 1 + } + }, + "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 + } + } + ] + } + } + } +} diff --git a/lib/populateContext.ts b/lib/populateContext.ts index 47aa4b1..3e04104 100644 --- a/lib/populateContext.ts +++ b/lib/populateContext.ts @@ -165,17 +165,19 @@ export function getContextValue(title, OS_object) { } } else if (title == 'PRC-link to PRC') { let link = OS_object.project.tools.researchCanvas.url; - // let link = 'https://docs.google.com/presentation/d/1cjlBycSraDkSG_Fb6oZXfc8Eg5Hwo7RdXg4jJ_rXgL8/edit?usp=sharing' return link; } else if (title == 'PRC-Time Last Edited') { - return 'Sep 21, by Yiran Mo'; + return 'Today, by Grace Wang'; } else if (title == 'PRC-Slides Updated in this sprint') { - return 'None'; + return 'User Study Plan, User Study Takeaways'; } else if (title == 'Sprint log-Riskiest Risk Specified in Planning View') { - return `\nThe riskeist risk that we need to resolve is to tune paramaters (1)The top percentage of categories that related to FL -> Top 100%? 50%? 20%? (2) Top percentage of the categories that are more closely related to FL than PA -> Top 100%?, 50%? 20%? - And filter out the sparse data (categories with few reviews) and test the performance of the model.`; + return `\nNeed to understand whether our framework + RC Library is helpful for manually detected signals. Specifically we need to know: + 1. Whether RC model can provide general directions for Qs to ask about for a specific issue + 2. Can the mentor choose the appropriate root cause model for pre-encoded generic issues from RC library given the signal they have in mind? + 3. What signals do mentors have in mind? How specific is it compared to the root cause library and machine detected signals? + 4. How do mentors choose what model to use?`; } else if (title == 'Sprint log-Canvases Planned to Update Last Week') { - return 'Interface Argument, System Argument'; + return 'User Study Takeaways'; } else if (title == 'Sprint log-Individual Points Commited This Sprint') { const output = studentObjs.map( (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` From 955d71892101ab3afae5ad9b1111c58344e8b38e Mon Sep 17 00:00:00 2001 From: Linh Ly Date: Sun, 7 Apr 2024 15:08:42 -0500 Subject: [PATCH 072/111] testing fetch --- pages/api/test/get_OS_project_object.js | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/pages/api/test/get_OS_project_object.js b/pages/api/test/get_OS_project_object.js index 3ff24fa..0ca18a2 100644 --- a/pages/api/test/get_OS_project_object.js +++ b/pages/api/test/get_OS_project_object.js @@ -3,19 +3,26 @@ async function getComputedOrganizationalObjectsForProject(projectName) { projectName, }; try { - const response = await fetch(`${process.env.API_URL}/organizationalObjects/getComputedOrganizationalObjectsForProject`, { - method: 'POST', - body: JSON.stringify(requestBody), - headers: { - 'Content-Type': 'application/json', + const response = await fetch( + `${process.env.API_URL}/organizationalObjects/getComputedOrganizationalObjectsForProject`, + { + method: 'POST', + body: JSON.stringify(requestBody), + headers: { + 'Content-Type': 'application/json', + }, }, - }); + ); if (response.status === 200) { const data = await response.json(); + console.log('WHEEEEEEEE'); + console.log(data); return data; } else { - throw new Error(`Failed to fetch data with ${process.env.API_URL}/organizationalObjects/getComputedOrganizationalObjectsForProject for ${projectName}`); + throw new Error( + `Failed to fetch data with ${process.env.API_URL}/organizationalObjects/getComputedOrganizationalObjectsForProject for ${projectName}`, + ); } } catch (error) { console.error(error); From 437a4368bd6fccba4d8ba683b5b86d69e4415eb7 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Sun, 7 Apr 2024 15:23:22 -0500 Subject: [PATCH 073/111] manual fix for getContext bc OS is down --- pages/api/test/get_OS_project_object.js | 2 -- pages/response.tsx | 6 ++++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/api/test/get_OS_project_object.js b/pages/api/test/get_OS_project_object.js index 0ca18a2..b9dbc78 100644 --- a/pages/api/test/get_OS_project_object.js +++ b/pages/api/test/get_OS_project_object.js @@ -16,8 +16,6 @@ async function getComputedOrganizationalObjectsForProject(projectName) { if (response.status === 200) { const data = await response.json(); - console.log('WHEEEEEEEE'); - console.log(data); return data; } else { throw new Error( diff --git a/pages/response.tsx b/pages/response.tsx index 3165619..d710036 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -151,13 +151,15 @@ export const getServerSideProps: GetServerSideProps = async (context) => { ); for (let context of gen_context) { - context.data = getContextValue(context.title, project_object); + // context.data = getContextValue(context.title, project_object); + context.data = "placeholder because OS is down" } // creates a library that holds the values of all context options const context_lib: Record = {}; options.forEach((option) => { - context_lib[option] = getContextValue(option, project_object); + // context_lib[option] = getContextValue(option, project_object); + context_lib[option] = "placeholder because OS is down" }); let hypothesisList = data.hypothesisList From 9a6f201b00d369de70f116b477204ef312d67d4a Mon Sep 17 00:00:00 2001 From: Linh Ly Date: Sun, 7 Apr 2024 18:11:47 -0500 Subject: [PATCH 074/111] simple affordances --- components/diagnosis/Insight.module.css | 24 +++ components/diagnosis/Insight.tsx | 28 +++ components/diagnosis/Notes.module.css | 24 +++ components/diagnosis/Notes.tsx | 28 +++ .../diagnosis/SuggestedIssues.module.css | 25 +++ components/diagnosis/SuggestedIssues.tsx | 19 ++ lib/populateContext.ts | 32 +-- pages/response.tsx | 190 ++++++++++-------- 8 files changed, 275 insertions(+), 95 deletions(-) create mode 100644 components/diagnosis/Insight.module.css create mode 100644 components/diagnosis/Insight.tsx create mode 100644 components/diagnosis/Notes.module.css create mode 100644 components/diagnosis/Notes.tsx create mode 100644 components/diagnosis/SuggestedIssues.module.css create mode 100644 components/diagnosis/SuggestedIssues.tsx diff --git a/components/diagnosis/Insight.module.css b/components/diagnosis/Insight.module.css new file mode 100644 index 0000000..9eb5f25 --- /dev/null +++ b/components/diagnosis/Insight.module.css @@ -0,0 +1,24 @@ +.sideBySideItem2 { + width: 100%; + background-color: white; + padding: 8px; +} + +.sideBySideItem2 textarea { + width: 100%; + background-color: #e5e7eb; + height: 100px; + padding: 10px; + box-sizing: border-box; +} + +.sideBySideItem2 p { + font-size: 0.8rem; + margin-bottom: 10px; +} + +.headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; +} diff --git a/components/diagnosis/Insight.tsx b/components/diagnosis/Insight.tsx new file mode 100644 index 0000000..8ae1cf5 --- /dev/null +++ b/components/diagnosis/Insight.tsx @@ -0,0 +1,28 @@ +import React, { useState, useEffect, ChangeEvent } from 'react'; +import styles from './Insight.module.css'; + +interface Props { + plan: string; + setPlan: (content: string) => void; +} + +const Insight: React.FC = ({ plan, setPlan }) => { + const handleInputChange = (event: ChangeEvent) => { + setPlan(event.target.value); + }; + + return ( +
          +

          Insight

          +

          Please write down some insights you have about the situation

          + +
          + ); +}; + +export default Insight; diff --git a/components/diagnosis/Notes.module.css b/components/diagnosis/Notes.module.css new file mode 100644 index 0000000..b66d87a --- /dev/null +++ b/components/diagnosis/Notes.module.css @@ -0,0 +1,24 @@ +.sideBySideItem2 { + width: 60%; + background-color: white; + padding: 8px; + } + + .sideBySideItem2 textarea { + width: 100%; + background-color: #e5e7eb;; + height: 200px; + padding: 10px; + box-sizing: border-box; + } + + .sideBySideItem2 p { + font-size: 0.8rem; + margin-bottom: 10px; + } + +.headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; + } diff --git a/components/diagnosis/Notes.tsx b/components/diagnosis/Notes.tsx new file mode 100644 index 0000000..ef7d41a --- /dev/null +++ b/components/diagnosis/Notes.tsx @@ -0,0 +1,28 @@ +import React, { useState, useEffect, ChangeEvent } from 'react'; +import styles from './GamePlan.module.css'; + +interface Props { + plan: string; + setPlan: (content: string) => void; +} + +const Notes: React.FC = ({ plan, setPlan }) => { + const handleInputChange = (event: ChangeEvent) => { + setPlan(event.target.value); + }; + + return ( +
          +

          Notes

          +

          Do you think the suggested issues are relevant to the situation?

          + +
          + ); +}; + +export default Notes; diff --git a/components/diagnosis/SuggestedIssues.module.css b/components/diagnosis/SuggestedIssues.module.css new file mode 100644 index 0000000..8f6a19d --- /dev/null +++ b/components/diagnosis/SuggestedIssues.module.css @@ -0,0 +1,25 @@ +.sideBySideItem1 { + width: 40%; + background-color: white; + margin-right: 8px; + padding: 8px; +} + +.sideBySideItem1 textarea { + width: 100%; + background-color: #e5e7eb; + height: 165px; + padding: 10px; + box-sizing: border-box; +} + +.sideBySideItem1 p { + font-size: 0.8rem; + margin-bottom: 10px; +} + +.headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; +} diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx new file mode 100644 index 0000000..a1c7c11 --- /dev/null +++ b/components/diagnosis/SuggestedIssues.tsx @@ -0,0 +1,19 @@ +import React from 'react'; +import styles from './SuggestedIssues.module.css'; + +const SuggestedIssues: React.FC = () => { + return ( +
          +

          Suggested Issues

          +

          + {/* */} +
          + ); +}; + +export default SuggestedIssues; diff --git a/lib/populateContext.ts b/lib/populateContext.ts index 3e04104..148a1e0 100644 --- a/lib/populateContext.ts +++ b/lib/populateContext.ts @@ -140,7 +140,7 @@ export function getContextValue(title, OS_object) { (story) => `----${story.description} [${story.totalPointsRequired} hr]\nPurpose: ${ story.purpose || 'none' - }\n Deliverables: ${story.deliverables} \n` + }\n Deliverables: ${story.deliverables} \n`, ); const format_output = `\n${output.join('\n')}`; @@ -154,7 +154,7 @@ export function getContextValue(title, OS_object) { const output = storiesObjs.map((story) => { const tasksWithDescriptions = story.tasks.map( (task) => - `----${task.description}, [${task.pointsRequired} hr], [assigned to ${task.assignee}]` + `----${task.description}, [${task.pointsRequired} hr], [assigned to ${task.assignee}]`, ); return `\n${story.description}:\n${tasksWithDescriptions.join('\n')}\n`; }); @@ -180,7 +180,7 @@ export function getContextValue(title, OS_object) { return 'User Study Takeaways'; } else if (title == 'Sprint log-Individual Points Commited This Sprint') { const output = studentObjs.map( - (student) => `${student.name} [${student.totalPointsCommitted} hr]; ` + (student) => `${student.name} [${student.totalPointsCommitted} hr]; `, ); return output; } else if ( @@ -188,23 +188,23 @@ export function getContextValue(title, OS_object) { ) { // How to detect midsprint? const output = studentObjs.map( - (student) => `${student.name} [${student.totalHoursSpent} hr]; ` + (student) => `${student.name} [${student.totalHoursSpent} hr]; `, ); console.log(OS_object); return output; - // } else if (title == 'Sprint log-Individual Points Commited-All Sprints') { - // // Issue: OS_Object only return current sprint [temp sol: hardcode] - // return `\nGrace: [Sprint 0] 1/8, [Sprint 1] 15.9/16, [Sprint 2] 24.5/16, [Sprint 3] 22/16, [Sprint 4] 16/16, [Sprint 5] 15.5/16 - // Linh: [Sprint 0] 7/8, [Sprint 1] 15.9/16, [Sprint 2] 11.5/16, [Sprint 3] 20/16, [Sprint 4] 15/16, [Sprint 5] 15.5/16`; - // } else if (title == 'Sprint log-Individual Points Spent-All Sprint') { - // // Issue: OS_Object only return current sprint [temp sol: hardcode] - // let project = OS_object.project; - // const sprint = project.tools; - // return `\nGrace: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 6/16, [Sprint 3] 21/16, [Sprint 4] 14/16, [Sprint 5] 0/16 - // Linh: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 5.5/16, [Sprint 3] 19/16, [Sprint 4] 15/16, [Sprint 5] 0/16`; + // } else if (title == 'Sprint log-Individual Points Commited-All Sprints') { + // // Issue: OS_Object only return current sprint [temp sol: hardcode] + // return `\nGrace: [Sprint 0] 1/8, [Sprint 1] 15.9/16, [Sprint 2] 24.5/16, [Sprint 3] 22/16, [Sprint 4] 16/16, [Sprint 5] 15.5/16 + // Linh: [Sprint 0] 7/8, [Sprint 1] 15.9/16, [Sprint 2] 11.5/16, [Sprint 3] 20/16, [Sprint 4] 15/16, [Sprint 5] 15.5/16`; + // } else if (title == 'Sprint log-Individual Points Spent-All Sprint') { + // // Issue: OS_Object only return current sprint [temp sol: hardcode] + // let project = OS_object.project; + // const sprint = project.tools; + // return `\nGrace: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 6/16, [Sprint 3] 21/16, [Sprint 4] 14/16, [Sprint 5] 0/16 + // Linh: [Sprint 0] 0/8, [Sprint 1] 13.7/16, [Sprint 2] 5.5/16, [Sprint 3] 19/16, [Sprint 4] 15/16, [Sprint 5] 0/16`; } else if (title == 'Link to Sprint Log') { - return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing' } - else { + return 'https://docs.google.com/spreadsheets/d/1KJRlJ42PVS0Qr7Hp3FTPqpexeFNMGeYBJu41Ehnl1Hg/edit?usp=sharing'; + } else { return 'No Match'; } } diff --git a/pages/response.tsx b/pages/response.tsx index d710036..3343a6c 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -13,94 +13,122 @@ import ListofRC from '../components/diagnosis/ListofRC'; import Context from '../components/diagnosis/DiagContext'; import InitialHunch from '../components/diagnosis/InitialHunch'; import GamePlan from '../components/diagnosis/GamePlan'; +import Insight from '../components/diagnosis/Insight'; +import Notes from '../components/diagnosis/Notes'; +import SuggestedIssues from '../components/diagnosis/SuggestedIssues'; import Guidelines from '../components/diagnosis/Guidelines'; import HypothesisList from '../components/diagnosis/HypothesisList'; import getComputedOrganizationalObjectsForProject from '../pages/api/test/get_OS_project_object.js'; import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; -const Response: NextPage = ({sigName, projName, description, gen_context, initial_hunch, game_plan, detector, root_causes, id, context_lib, hypothesisList, canvasState}) => { - const [items, setItems] = useState(root_causes); - const [problemContent, setProblemContent] = useState( - description - ); - const [context, setContext] = useState(gen_context); - const [hunch, setHunch] = useState(initial_hunch); - const [plan, setPlan] = useState(game_plan); - const defaultHypothesis = { title: 'First Hunch', content: 'fill in your first hunch here!' }; - const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); - const [canvas, setCanvas] = useState(canvasState || []); - - const updateResponse = async (desc) => { - try { - const response = await fetch('/api/test/update_response', { - method: 'PUT', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify({ - _id: id, - gen_context: JSON.stringify(context), - hypothesisList: JSON.stringify(hypos), - description: desc, - initial_hunch: hunch, - game_plan: plan, - p5Canvas: JSON.stringify(canvas), - // rcs: JSON.stringify(rclist), - }), - }); - if (response.ok) { - console.log('Database updated successfully.'); - } else { - console.error('Failed to update Database.'); - } - } catch (error) { - console.error('Error updating Database:', error); - } - }; - - const getScriptByTitle = async () => { - let title = 'Unbalanced Work Across Partners'; - const res = await fetch('/api/scripts', { - method: 'POST', - headers: { 'Content-Type': 'application/json' }, - body: JSON.stringify({ title }), +const Response: NextPage = ({ + sigName, + projName, + description, + gen_context, + initial_hunch, + game_plan, + detector, + root_causes, + id, + context_lib, + hypothesisList, + canvasState, + insightState, + notesState, +}) => { + const [items, setItems] = useState(root_causes); + const [problemContent, setProblemContent] = useState(description); + const [context, setContext] = useState(gen_context); + const [hunch, setHunch] = useState(initial_hunch); + const [plan, setPlan] = useState(game_plan); + const [notes, setNotes] = useState(notesState); + const [insight, setInsight] = useState(insightState); + const defaultHypothesis = { + title: 'First Hunch', + content: 'fill in your first hunch here!', + }; + const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); + const [canvas, setCanvas] = useState(canvasState || []); + + const updateResponse = async (desc) => { + try { + const response = await fetch('/api/test/update_response', { + method: 'PUT', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + _id: id, + gen_context: JSON.stringify(context), + hypothesisList: JSON.stringify(hypos), + description: desc, + initial_hunch: hunch, + game_plan: plan, + p5Canvas: JSON.stringify(canvas), + notesState: JSON.stringify(notes), + insightState: JSON.stringify(insight), + // rcs: JSON.stringify(rclist), + }), }); - console.log('RESPONSE FETCHED RES', res); - if (res.ok) { - const { scriptId } = await res.json(); - let script_root_cause_list = scriptId.RC_C_S; - return script_root_cause_list; + if (response.ok) { + console.log('Database updated successfully.'); } else { - console.log('Script not found'); + console.error('Failed to update Database.'); } - }; - - useEffect(() => { - updateResponse(problemContent); - }, [context, hypos, hunch, plan, problemContent, canvas]); - - return ( -
          + } catch (error) { + console.error('Error updating Database:', error); + } + }; + + const getScriptByTitle = async () => { + let title = 'Unbalanced Work Across Partners'; + const res = await fetch('/api/scripts', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ title }), + }); + console.log('RESPONSE FETCHED RES', res); + if (res.ok) { + const { scriptId } = await res.json(); + let script_root_cause_list = scriptId.RC_C_S; + return script_root_cause_list; + } else { + console.log('Script not found'); + } + }; + + useEffect(() => { + updateResponse(problemContent); + }, [context, hypos, hunch, plan, problemContent, canvas, notes, insight]); + + return ( +
          - - + + {/* */} +
          + {' '} +
          - - + {/* */} + {/* */} + +
          - - + {/* */} +
          - ); - }; - - export default React.memo(Response); + ); +}; + +export default React.memo(Response); export const getServerSideProps: GetServerSideProps = async (context) => { let response_id = context.query?.response; @@ -134,6 +162,8 @@ export const getServerSideProps: GetServerSideProps = async (context) => { let game_plan = data.game_plan; let description = data.description; let gen_context = data.gen_context; + // let insightState = data.insightState; + // let notesState = data.notesState; if (!Array.isArray(gen_context)) { gen_context = [gen_context]; } @@ -146,23 +176,22 @@ export const getServerSideProps: GetServerSideProps = async (context) => { let sigName = data.sigName; let projName = data.projName; - const project_object = await getComputedOrganizationalObjectsForProject( - projName - ); + const project_object = + await getComputedOrganizationalObjectsForProject(projName); for (let context of gen_context) { // context.data = getContextValue(context.title, project_object); - context.data = "placeholder because OS is down" + context.data = 'placeholder because OS is down'; } // creates a library that holds the values of all context options const context_lib: Record = {}; options.forEach((option) => { // context_lib[option] = getContextValue(option, project_object); - context_lib[option] = "placeholder because OS is down" + context_lib[option] = 'placeholder because OS is down'; }); - let hypothesisList = data.hypothesisList + let hypothesisList = data.hypothesisList; let canvasState: { type: string; xPos: number; yPos: number }[] = []; // if canvas isn't initialized properly in DB or canvas is [], use context to initialize it @@ -171,11 +200,11 @@ export const getServerSideProps: GetServerSideProps = async (context) => { canvasState.push({ type: context.title, xPos: 50, yPos: 50 }); }); } else { - canvasState = data.p5Canvas + canvasState = data.p5Canvas; } // let canvasState = data.p5Canvas; - console.log('canvasState', canvasState) + console.log('canvasState', canvasState); return { props: { @@ -191,5 +220,8 @@ export const getServerSideProps: GetServerSideProps = async (context) => { context_lib: context_lib, hypothesisList: hypothesisList, canvasState: canvasState, - }} + // notes: notesState, + // insight: insightState, + }, }; +}; From 97dabe8a760d3c55c7c0452709ea1048d0fe0e83 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Sun, 7 Apr 2024 23:58:34 -0500 Subject: [PATCH 075/111] suggestedIssues component + js TFIDF monstrosity" --- components/diagnosis/SuggestedIssues.tsx | 33 +- lib/TFIDF.js | 81 + lib/TFIDF.py | 51 + lib/ostest/.response.json.icloud | Bin 0 -> 163 bytes lib/ostest/response.json | 236882 -------------------- lib/stopWords.js | 327 + lib/stopWords.ts | 325 + package-lock.json | 9358 + package.json | 5 +- pages/response.tsx | 4 +- yarn.lock | 1870 +- 11 files changed, 11234 insertions(+), 237702 deletions(-) create mode 100644 lib/TFIDF.js create mode 100644 lib/TFIDF.py create mode 100644 lib/ostest/.response.json.icloud delete mode 100644 lib/ostest/response.json create mode 100644 lib/stopWords.js create mode 100644 lib/stopWords.ts create mode 100644 package-lock.json diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index a1c7c11..a1c3a47 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -1,17 +1,34 @@ import React from 'react'; +import {useState, useEffect} from 'react'; import styles from './SuggestedIssues.module.css'; +// import { exec } from 'child_process'; + +interface Props { + insight: string; +} +const SuggestedIssues: React.FC = ({insight}) => { + const [result, setResult] = useState(''); + + // const runPythonScript = (input) => { + // exec('python lib/TFIDF.py "${input}"', (error, stdout, stderr) => { + // if (error) { + // console.error(`Error executing Python script: ${error}`); + // return; + // } + // setResult(stdout); + // }); + // }; + +// useEffect(() => { +// // Run the TFIDF script whenever insight changes +// runPythonScript(insight); +// }, [insight]); -const SuggestedIssues: React.FC = () => { return (

          Suggested Issues

          -

          - {/* */} +

          Insight: {insight}

          + {/*

          Result: {result}

          */}
          ); }; diff --git a/lib/TFIDF.js b/lib/TFIDF.js new file mode 100644 index 0000000..3659b94 --- /dev/null +++ b/lib/TFIDF.js @@ -0,0 +1,81 @@ +const natural = require('natural'); +const _ = require('lodash'); +const { ENGLISH_STOP_WORDS } = require('./stopWords.js'); +stopwords = ENGLISH_STOP_WORDS; +console.log(stopwords.join(', ')) + +function preprocess(text) { + return text.toLowerCase(); +} + +function cosineSimilarity(vectorA, vectorB) { + const dotProduct = _.sum(_.zipWith(vectorA, vectorB, (a, b) => a * b)); + const magnitudeA = Math.sqrt(_.sumBy(vectorA, val => val ** 2)); + const magnitudeB = Math.sqrt(_.sumBy(vectorB, val => val ** 2)); + return dotProduct / (magnitudeA * magnitudeB); +} + +function getTopSimilarIssues(mentorNote, issues, topN = 3) { + mentorNote = preprocess(mentorNote); + + const issueDescriptions = issues.map(issue => preprocess(issue.description + issue.title)); + + // Corpus = an array of mentor's note + descriptions + const documents = [mentorNote, ...issueDescriptions]; + + // Create TF-IDF vectorizer + const vectorizer = new natural.TfIdf(); + vectorizer.addDocument(documents.join(' ')); + + // Compute TF-IDF vectors + const tfidfMatrix = documents.map(doc => { + const terms = doc.match(/\b\w+\b/g); // Regular expression to match words + const uniqueTerms = terms.filter(term => !stopwords.includes(term)); // find unique terms + const vectorTerms = vectorizer.listTerms(0).filter(term => !stopwords.includes(term.term)); // Exclude stopwords from vectorizer + const vector = vectorTerms.map(term => { + return { term: term.term, tfidf: uniqueTerms.includes(term.term) ? term.tfidf : 0 }; + }); + return _.sortBy(vector, 'term'); + }); + + // Print TF-IDF vector for mentor notes + console.log("TF-IDF Matrix note:"); + console.table(tfidfMatrix[0]); + + // Compute cosine similarity between mentor's note and issue descriptions + const mentorVector = tfidfMatrix[0].map(term => term.tfidf); + const issueVectors = tfidfMatrix.slice(1).map(vector => vector.map(term => term.tfidf)); + + const similarities = issueVectors.map(issueVector => { + return cosineSimilarity(mentorVector, issueVector); + }); + + // Get top similar issues + const topIndices = _.chain(similarities) + .map((similarity, index) => [index, similarity]) + .sortBy(pair => pair[1]) + .reverse() + .take(topN) + .map(pair => pair[0]) + .value(); + + const topSimilarIssues = topIndices.map(index => { + return { title: issues[index].title, similarity: similarities[index] }; + }); + + return topSimilarIssues; +} + +const issues = [ + { title: "students not understanding some core part of the conceptual approach and it's really affecting what they are doing practically", + description: "students have gaps of understanding in their conceptual approach so that it's difficult to advance their practical design. Some common signals include can't articulate some part of their conceptual approach and vagueness in conceptual understanding." }, + { title: "students being too hard on themselves", + description: "students put a lot of pressure on themselves to work more and deliver, sometimes feeling bad from failing to meet a pre-establish goal or letting others down. They often have a high standard for themselves. Some common signals are being a perfectionist, being stressed or anxious, and having fear of failure." }, + { title: "student not planning with clear deliverables", + description: "when students plan their sprint, they don't have a clear deliverable in mind such as a prototype, user journey, or a section of the canvases that would clearly show how they addressed their riskiest risk. Some common signals are story with empty purpose/deliverable in sprint log, their idea of what form of deliverable would showcase their new understanding is undeveloped or vague." } +]; +const mentorNote = "Ella being too hard on herself and not focusing on risks (when everything looks like one) - Ended up over focusing on what happened in an ineffective user test - Freaked out about a poor user test and that drove a lot of her attention"; +// const mentorNote = "Purpose missing because they are still not explicit about what milestones they want to hit --- the deliverables are unclear too so it's all related? Not having a clear sense of what the deliverable should actually be or look like" + +const topSimilarIssues = getTopSimilarIssues(mentorNote, issues); +console.log("Top similar issues:", topSimilarIssues); \ No newline at end of file diff --git a/lib/TFIDF.py b/lib/TFIDF.py new file mode 100644 index 0000000..70de5fc --- /dev/null +++ b/lib/TFIDF.py @@ -0,0 +1,51 @@ +from sklearn.feature_extraction.text import TfidfVectorizer +from sklearn.metrics.pairwise import cosine_similarity +from sklearn.feature_extraction import text +from tabulate import tabulate + +def preprocess(text): + # lowercase + # TODO: other preproessing steps? + return text.lower() + +def get_top_similar_issues(mentor_note, top_n=3): + issues = [ + {"title": "students not understanding some core part of the conceptual approach and it's really affecting what they are doing practically", + "description": "students have gaps of understanding in their conceptual approach so that it's difficult to advance their practical design. Some common signals include can't articulate some part of their conceptual approach and vagueness in conceptual understanding."}, + {"title": "students being too hard on themselves", + "description": "students put a lot of pressure on themselves to work more and deliver, sometimes feeling bad from failing to meet a pre-establish goal or letting others down. They often have a high standard for themselves. Some common signals are being a perfectionist, being stressed or anxious, and having fear of failure."}, + {"title": "student not planning with clear deliverables", + "description": "when students plan their sprint, they don't have a clear deliverable in mind such as a prototype, user journey, or a section of the canvases that would clearly show how they addressed their riskiest risk. Some common signals are story with empty purpose/deliverable in sprint log, their idea of what form of deliverable would showcase their new understanding is undeveloped or vague."} + ] + mentor_note = preprocess(mentor_note) + + issue_descriptions = [preprocess(issue['description'] + issue['title']) for issue in issues] + + # Corpus = an array of mentor's note + descriptions + documents = [mentor_note] + issue_descriptions + + # Create TF-IDF vectorizer + stop_words = list(text.ENGLISH_STOP_WORDS) + ["issue", "doing", "having", "lot"] # TODO: add DTR specific stop words + vectorizer = TfidfVectorizer(stop_words=stop_words) + tfidf_matrix = vectorizer.fit_transform(documents) + + # Print TF-IDF vectors + feature_names = vectorizer.get_feature_names_out() + tfidf_table = [[feature_names[i]] + [f"{tfidf_matrix[j, i]:.2f}" for j in range(tfidf_matrix.shape[0])] for i in range(tfidf_matrix.shape[1])] + print("TF-IDF Matrix:") + print(tabulate(tfidf_table, headers=["Term"] + ["Document " + str(i+1) for i in range(len(documents))])) + + # Compute cosine similarity between mentor's note and issue descriptions + similarities = cosine_similarity(tfidf_matrix[0:1], tfidf_matrix[1:])[0] + + # Get top similar issues + top_indices = similarities.argsort()[-top_n:][::-1] + top_similar_issues = [(issues[i]['title'], similarities[i]) for i in top_indices] + + return top_similar_issues + +# mentor_note = "Ella being too hard on herself and not focusing on risks (when everything looks like one) - Ended up over focusing on what happened in an ineffective user test - Freaked out about a poor user test and that drove a lot of her attention" +# # mentor_note = "Purpose missing because they are still not explicit about what milestones they want to hit --- the deliverables are unclear too so it's all related? Not having a clear sense of what the deliverable should actually be or look like" + +# top_similar_issues = get_top_similar_issues(mentor_note, issues) +# print("Top similar issues:", top_similar_issues) diff --git a/lib/ostest/.response.json.icloud b/lib/ostest/.response.json.icloud new file mode 100644 index 0000000000000000000000000000000000000000..e15418125e3a093a6660c749730afe6a76817bad GIT binary patch literal 163 zcmYc)$jK}&F)+By$i&RT$`<1n92(@~mzbOComv?$AOPmNW#*&?XI4RkB;Z0psm1xF zMaiill?5QF*rL?pg8aPVRK2X?{5&CsewI1$0y0=t2c@Q$<|Gzz@XP3XMZ_|I0V5-X LW?+ZXFscRsqEIZX literal 0 HcmV?d00001 diff --git a/lib/ostest/response.json b/lib/ostest/response.json deleted file mode 100644 index 40a9035..0000000 --- a/lib/ostest/response.json +++ /dev/null @@ -1,236882 +0,0 @@ -{ - "presentationId": "1mksfTUtY-9ctogzuo_PPZQBMdt2K6F7DV57BeIBPjX8", - "pageSize": { - "width": { - "magnitude": 9144000, - "unit": "EMU" - }, - "height": { - "magnitude": 5143500, - "unit": "EMU" - } - }, - "slides": [ - { - "objectId": "gcbd9fbfbdf_0_285", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_286", - "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": 5, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "DTR \n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 5, - "endIndex": 48, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 5, - "endIndex": 47, - "textRun": { - "content": "Practical and Conceptual Research Canvases", - "style": { - "bold": true - } - } - }, - { - "startIndex": 47, - "endIndex": 48, - "textRun": { - "content": "\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 0.9 - } - }, - "placeholder": { - "type": "CENTERED_TITLE", - "parentObjectId": "p2_i0" - } - } - }, - { - "objectId": "g1d5b9d33aa0_0_4", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8402, - "scaleY": 0.2642, - "translateX": 311700, - "translateY": 2797175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 37, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "Orchestration Scripting Environments\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SUBTITLE", - "parentObjectId": "p2_i1" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p2", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_285:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_287", - "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": "gcbd9fbfbdf_0_288", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_288" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_334", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_335", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 38, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 37, - "textRun": { - "content": "Design Argumentation", - "style": {} - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "\n", - "style": { - "italic": true, - "fontSize": { - "magnitude": 30, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_334:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_336", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_337", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_337" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_46", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_47", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 517800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 12, - "textRun": { - "content": "User classes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 12, - "endIndex": 13, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 71, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 70, - "textRun": { - "content": "Who are your users? At a high-level, what are they doing?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 71, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Users’ needs and goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 83, - "textRun": { - "content": "What are the high-level needs and goals for each user class?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 84, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Current solutions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 125, - "textRun": { - "content": "What existing solutions do users have to achieve their goals? (note: these need not be technical solutions)", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 83, - "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" - } - } - }, - { - "endIndex": 39, - "textRun": { - "content": "Users’ obstacles to meeting their goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 39, - "endIndex": 40, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 82, - "textRun": { - "content": "Why are users not able to meet their goal?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 83, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Problem statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 138, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 137, - "textRun": { - "content": "Briefly state the problems that your project will aim to solve (but not a solution yet!), using your previous responses", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 137, - "endIndex": 138, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 517800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2785400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 11, - "textRun": { - "content": "User class:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 11, - "endIndex": 13, - "textRun": { - "content": " \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 365, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 365, - "textRun": { - "content": "Mentors and mentees in networked work environments working to solve complex, ill-structured problems that have vaguely structured goals and constraints, and often multiple solutions. Working on these problems involves continually planning and re-planning around changing needs and constraints, often soliciting support from others in the organization.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 365, - "endIndex": 366, - "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" - } - } - }, - { - "startIndex": 365, - "endIndex": 366, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 366, - "endIndex": 389, - "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" - } - } - }, - { - "startIndex": 366, - "endIndex": 389, - "textRun": { - "content": "User Characteristics: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 389, - "endIndex": 586, - "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" - } - } - }, - { - "startIndex": 389, - "endIndex": 586, - "textRun": { - "content": "Mentors possess expertise in the organization’s area of work, various resources in the organization, effective work practices, as well as addressing problems that commonly arise in the workspace. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 44, - "textRun": { - "content": "Mentors want to utilize their expertise to:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 83, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 44, - "endIndex": 83, - "textRun": { - "content": "Know when their mentees are struggling\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 127, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 83, - "endIndex": 127, - "textRun": { - "content": "Understand why their mentees are struggling\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 213, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 127, - "endIndex": 213, - "textRun": { - "content": "Provide tailored strategy to help their mentees overcome what they’re struggling with\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 213, - "endIndex": 296, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 213, - "endIndex": 296, - "textRun": { - "content": "Help them become better learners without spending an overwhelming amount of time. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "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" - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 297, - "endIndex": 512, - "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" - } - } - }, - { - "startIndex": 297, - "endIndex": 512, - "textRun": { - "content": "When tackling complex tasks, mentees often encounter problems that require support from others because they do not have the resources or skills to address the work needs themselves. When this happens, they want to:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 512, - "endIndex": 621, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 512, - "endIndex": 621, - "textRun": { - "content": "Utilize the resources in their work network such as venues, people, and tools to solve their problem at hand\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 621, - "endIndex": 777, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 621, - "endIndex": 777, - "textRun": { - "content": "Learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 777, - "endIndex": 833, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 777, - "endIndex": 833, - "textRun": { - "content": "Do so in a way which is more sustainable and enjoyable.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "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" - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "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" - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.pybpe9m23two": { - "listId": "kix.pybpe9m23two", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.z71lbhkwuvo3": { - "listId": "kix.z71lbhkwuvo3", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 264, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "1.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 31, - "textRun": { - "content": "Online/offline communication", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 264, - "textRun": { - "content": ": mentor contacts mentees through professional messaging platforms such as Slack, email, or meet with mentees in person to discuss their struggles. Mentees can also contact mentors to ask questions and get help when they are stuck. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 264, - "endIndex": 265, - "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" - } - } - }, - { - "startIndex": 264, - "endIndex": 265, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 265, - "endIndex": 293, - "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" - } - } - }, - { - "startIndex": 265, - "endIndex": 267, - "textRun": { - "content": "2.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 267, - "endIndex": 268, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 268, - "endIndex": 274, - "textRun": { - "content": "Mentor", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 274, - "endIndex": 275, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 275, - "endIndex": 291, - "textRun": { - "content": "Manually Monitor", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 291, - "endIndex": 293, - "textRun": { - "content": ":\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 293, - "endIndex": 435, - "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" - } - } - }, - { - "startIndex": 293, - "endIndex": 435, - "textRun": { - "content": "With workspaces becoming increasingly digitized, mentor can manually check resources and notify students when they see ineffective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 435, - "endIndex": 436, - "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" - } - } - }, - { - "startIndex": 435, - "endIndex": 436, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 436, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 436, - "endIndex": 438, - "textRun": { - "content": "3.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 438, - "endIndex": 439, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 439, - "endIndex": 465, - "textRun": { - "content": "Workspace automation tools", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 465, - "endIndex": 467, - "textRun": { - "content": ":\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 586, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 586, - "textRun": { - "content": "Mentor can use workspace automation tools such as Slack and Zapier to detect work needs and facilitate work processes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 586, - "endIndex": 587, - "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" - } - } - }, - { - "startIndex": 586, - "endIndex": 587, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 587, - "endIndex": 613, - "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" - } - } - }, - { - "startIndex": 587, - "endIndex": 589, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 0.6 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 589, - "endIndex": 590, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 590, - "endIndex": 613, - "textRun": { - "content": "Orchestration Scripts:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 613, - "endIndex": 728, - "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" - } - } - }, - { - "startIndex": 613, - "endIndex": 728, - "textRun": { - "content": "Mentors can use the OS language to write scripts that surface support strategies at appropriate times and settings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 728, - "endIndex": 729, - "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" - } - } - }, - { - "startIndex": 728, - "endIndex": 729, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 729, - "endIndex": 730, - "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" - } - } - }, - { - "startIndex": 729, - "endIndex": 730, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.j2f6lbesv3dp": { - "listId": "kix.j2f6lbesv3dp", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.lrf6l3cv5yu7": { - "listId": "kix.lrf6l3cv5yu7", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "1.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 27, - "textRun": { - "content": " Mentor Contact Mentee: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 157, - "textRun": { - "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 180, - "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" - } - } - }, - { - "startIndex": 157, - "endIndex": 180, - "textRun": { - "content": "Mentee contact Mentor:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 440, - "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" - } - } - }, - { - "startIndex": 180, - "endIndex": 440, - "textRun": { - "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 440, - "endIndex": 441, - "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" - } - } - }, - { - "startIndex": 440, - "endIndex": 441, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 441, - "endIndex": 506, - "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" - } - } - }, - { - "startIndex": 441, - "endIndex": 443, - "textRun": { - "content": "2.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 443, - "endIndex": 506, - "textRun": { - "content": " Time-consuming and not scalable as organization grows in size\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 506, - "endIndex": 507, - "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" - } - } - }, - { - "startIndex": 506, - "endIndex": 507, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 507, - "endIndex": 702, - "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" - } - } - }, - { - "startIndex": 507, - "endIndex": 509, - "textRun": { - "content": "3.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 702, - "textRun": { - "content": " Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 702, - "endIndex": 1380, - "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" - } - } - }, - { - "startIndex": 702, - "endIndex": 874, - "textRun": { - "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 874, - "endIndex": 936, - "textRun": { - "content": "mentors tend to provide specific problem-solving strategies (c", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 936, - "endIndex": 955, - "textRun": { - "content": "ognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 955, - "endIndex": 968, - "textRun": { - "content": ") instead of ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 968, - "endIndex": 992, - "textRun": { - "content": "metacognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 992, - "endIndex": 1072, - "textRun": { - "content": " that ensure the problem is solved in ways that promote mentee’s personal growth", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1072, - "endIndex": 1380, - "textRun": { - "content": ". This is problematic because while the short-term goal of completing a specific task has been met, the underlying reason of why mentees were struggling with the task has been overlooked. In the long term, this underlying cause of struggling will likely cause many other problems for the mentor and mentees.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1380, - "endIndex": 1381, - "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" - } - } - }, - { - "startIndex": 1380, - "endIndex": 1381, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1381, - "endIndex": 1954, - "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" - } - } - }, - { - "startIndex": 1381, - "endIndex": 1383, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 0.6 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1383, - "endIndex": 1384, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1384, - "endIndex": 1405, - "textRun": { - "content": "Expression Challenge:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1405, - "endIndex": 1770, - "textRun": { - "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1770, - "endIndex": 1897, - "textRun": { - "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1897, - "endIndex": 1954, - "textRun": { - "content": " available through mentees' interaction with resources. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1954, - "endIndex": 1955, - "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" - } - } - }, - { - "startIndex": 1954, - "endIndex": 1955, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1955, - "endIndex": 2251, - "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" - } - } - }, - { - "startIndex": 1955, - "endIndex": 1961, - "textRun": { - "content": "Also, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1961, - "endIndex": 2028, - "textRun": { - "content": "Mentors often find it difficult to put themselves in mentee’s shoes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 2028, - "endIndex": 2251, - "textRun": { - "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.7w4lrivrcuw2": { - "listId": "kix.7w4lrivrcuw2", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 877, - "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" - } - } - }, - { - "endIndex": 877, - "textRun": { - "content": "Mentors want to utilize their expertise to help mentees achieve personal growth while tackling complex tasks in a networked workspace by understanding when and why mentees are struggling and providing tailored strategies. Mentors currently use tools like online/in person communication, and workspace automation tools to support their mentoring practice. However, these tools are either time-consuming, not scalable, or promotes task-specific cognitive strategies that have limited long-term benefits for the mentees. While the OS language allows mentors to surface support strategies at appropriate times and settings, 1) it’s still hard for them to know why mentees are struggling because mentors often find it difficult to put themselves in mentee’s shoe, and 2) they lack the tools to translate their high level understanding of work strategies to machine representations.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.7w4lrivrcuw2": { - "listId": "kix.7w4lrivrcuw2", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2785400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1481050, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 53, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "✅/❌ Have you clearly distinguished the user classes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "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" - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 54, - "endIndex": 118, - "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" - } - } - }, - { - "startIndex": 54, - "endIndex": 118, - "textRun": { - "content": "✅/❌ Do you state what your users are doing for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 183, - "textRun": { - "content": "✅/❌ Do you state the major characteristics for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 184, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 184, - "endIndex": 237, - "textRun": { - "content": "✅/❌ Have you generated personas for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 125, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 125, - "textRun": { - "content": "✅/❌ Are these goals things that your actual users want to do (and not things you think they should do)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 126, - "endIndex": 188, - "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" - } - } - }, - { - "startIndex": 126, - "endIndex": 188, - "textRun": { - "content": "✅/❌ Do you state why these goals are important to your users?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 189, - "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" - } - } - }, - { - "startIndex": 188, - "endIndex": 189, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 189, - "endIndex": 275, - "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" - } - } - }, - { - "startIndex": 189, - "endIndex": 275, - "textRun": { - "content": "✅/❌ Do you have evidence from your interviews or observations to support these goals?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "For each existing solution:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 122, - "textRun": { - "content": "✅/❌ Do you state how the current solution works, and how it is used to meet the users’ needs?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 217, - "textRun": { - "content": "✅/❌ Do you state what users think works well about the solution? What doesn’t work well? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 391, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 313, - "textRun": { - "content": "✅/❌ Do you state why is it bad that current solution doesn’t work at all or isn’t good enough? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 313, - "endIndex": 391, - "textRun": { - "content": "(hint: really try to empathize with your users to understand their struggles)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 98, - "textRun": { - "content": "✅/❌ Have you mapped out your user’s journey to understand their pain points?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 99, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 99, - "endIndex": 158, - "textRun": { - "content": "✅/❌ Do you understand why they are having these struggles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 158, - "endIndex": 159, - "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" - } - } - }, - { - "startIndex": 158, - "endIndex": 159, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 242, - "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" - } - } - }, - { - "startIndex": 159, - "endIndex": 242, - "textRun": { - "content": "✅/❌ Do you understand why these obstacles are problematic or painful for the user?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "For each problem statement:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 98, - "textRun": { - "content": "✅/❌ Does your problem statement address who the users/characters are?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 99, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 99, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Does your problem statement truly capture the core tension between the users’ needs and obstacles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 203, - "endIndex": 313, - "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" - } - } - }, - { - "startIndex": 203, - "endIndex": 313, - "textRun": { - "content": "✅/❌ Is your problem statement in the form, “User wants to do X, but can’t because Y, which is bad because Z”?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1481050, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2117e6dac59_1_48", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 41, - "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" - } - } - }, - { - "endIndex": 40, - "textRun": { - "content": "Mysore Template: Problem Statement {New}", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 41, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2117e6dac59_1_49", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "[Grace & Jordan]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 17, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_46:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_50", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_51", - "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": 29, - "paragraphMarker": { - "style": { - "indentStart": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "A is an obstacle (good job!)\n", - "style": {} - } - }, - { - "startIndex": 29, - "endIndex": 164, - "paragraphMarker": { - "style": { - "indentStart": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 29, - "endIndex": 82, - "textRun": { - "content": "I would rephrase b-3 to emphasize on the complexity, ", - "style": {} - } - }, - { - "startIndex": 82, - "endIndex": 103, - "textRun": { - "content": "which mentors/mentees", - "style": { - "underline": true - } - } - }, - { - "startIndex": 103, - "endIndex": 164, - "textRun": { - "content": " (especially mentees) do know have the bandwidth to process.\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_51" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_14", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_15", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 406900, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Desired User Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 79, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 78, - "textRun": { - "content": "What should users do? What should happen when they do it?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 78, - "endIndex": 79, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Obstacles to user outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 113, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 112, - "textRun": { - "content": "Where do existing solutions go wrong? Why can the users currently not meet their goal?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 112, - "endIndex": 113, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Design Characteristic\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 70, - "textRun": { - "content": "What is the core characteristic of your design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Argument for your design\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "textRun": { - "content": "Why would your design work? In other words, why would your characteristic overcome the obstacle to reach the outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 406900, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2892100, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 164, - "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" - } - } - }, - { - "endIndex": 164, - "textRun": { - "content": "A Mentors should be able to express their strategies into computer-executable scripts (OS scripts) to surface support strategies at appropriate times and settings.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 318, - "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" - } - } - }, - { - "startIndex": 165, - "endIndex": 318, - "textRun": { - "content": "B Mentors should strive to gain an in depth understanding of what mentees are struggling with, why they are struggling with it, and how they are working\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 318, - "endIndex": 319, - "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" - } - } - }, - { - "startIndex": 318, - "endIndex": 319, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 319, - "endIndex": 530, - "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" - } - } - }, - { - "startIndex": 319, - "endIndex": 530, - "textRun": { - "content": "C Given they can do B, mentors should help their mentees learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.z71lbhkwuvo3": { - "listId": "kix.z71lbhkwuvo3", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 34, - "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" - } - } - }, - { - "endIndex": 3, - "textRun": { - "content": "1. ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 31, - "textRun": { - "content": "Online/offline communication", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 34, - "textRun": { - "content": ": \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 58, - "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" - } - } - }, - { - "startIndex": 34, - "endIndex": 58, - "textRun": { - "content": "Mentor Contact Mentee: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 58, - "endIndex": 188, - "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" - } - } - }, - { - "startIndex": 58, - "endIndex": 188, - "textRun": { - "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 211, - "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" - } - } - }, - { - "startIndex": 188, - "endIndex": 211, - "textRun": { - "content": "Mentee contact Mentor:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 211, - "endIndex": 471, - "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" - } - } - }, - { - "startIndex": 211, - "endIndex": 471, - "textRun": { - "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 471, - "endIndex": 509, - "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" - } - } - }, - { - "startIndex": 471, - "endIndex": 509, - "textRun": { - "content": "-> can’t surface problems effectively\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "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" - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 510, - "endIndex": 538, - "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" - } - } - }, - { - "startIndex": 510, - "endIndex": 513, - "textRun": { - "content": "2. ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 513, - "endIndex": 538, - "textRun": { - "content": "Mentor Manually Monitor:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 538, - "endIndex": 603, - "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" - } - } - }, - { - "startIndex": 538, - "endIndex": 603, - "textRun": { - "content": "-> Time-consuming and not scalable as organization grows in size\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 603, - "endIndex": 604, - "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" - } - } - }, - { - "startIndex": 603, - "endIndex": 604, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 604, - "endIndex": 635, - "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" - } - } - }, - { - "startIndex": 604, - "endIndex": 607, - "textRun": { - "content": "3. ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 607, - "endIndex": 634, - "textRun": { - "content": "Workspace automation tools:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 634, - "endIndex": 635, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 635, - "endIndex": 827, - "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" - } - } - }, - { - "startIndex": 635, - "endIndex": 827, - "textRun": { - "content": "Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 827, - "endIndex": 1203, - "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" - } - } - }, - { - "startIndex": 827, - "endIndex": 998, - "textRun": { - "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So,", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 998, - "endIndex": 1001, - "textRun": { - "content": " ->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1001, - "endIndex": 1002, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1002, - "endIndex": 1064, - "textRun": { - "content": "mentors tend to provide specific problem-solving strategies (c", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1064, - "endIndex": 1083, - "textRun": { - "content": "ognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1083, - "endIndex": 1096, - "textRun": { - "content": ") instead of ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1096, - "endIndex": 1120, - "textRun": { - "content": "metacognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1120, - "endIndex": 1203, - "textRun": { - "content": " that ensure the problem is solved in ways that promote mentee’s personal growth. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1203, - "endIndex": 1204, - "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" - } - } - }, - { - "startIndex": 1203, - "endIndex": 1204, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1204, - "endIndex": 1220, - "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" - } - } - }, - { - "startIndex": 1204, - "endIndex": 1206, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1206, - "endIndex": 1219, - "textRun": { - "content": " OS Language:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1219, - "endIndex": 1220, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1220, - "endIndex": 1793, - "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" - } - } - }, - { - "startIndex": 1220, - "endIndex": 1240, - "textRun": { - "content": "Expression Challenge", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1240, - "endIndex": 1241, - "textRun": { - "content": ":", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1241, - "endIndex": 1606, - "textRun": { - "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1606, - "endIndex": 1609, - "textRun": { - "content": "-> ", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1609, - "endIndex": 1736, - "textRun": { - "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1736, - "endIndex": 1793, - "textRun": { - "content": " available through mentees' interaction with resources. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1793, - "endIndex": 1794, - "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" - } - } - }, - { - "startIndex": 1793, - "endIndex": 1794, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1794, - "endIndex": 2093, - "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" - } - } - }, - { - "startIndex": 1794, - "endIndex": 1800, - "textRun": { - "content": "Also, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1800, - "endIndex": 1801, - "textRun": { - "content": "-", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1801, - "endIndex": 1803, - "textRun": { - "content": "> ", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1803, - "endIndex": 1870, - "textRun": { - "content": "mentors often find it difficult to put themselves in mentee’s shoes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": true, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1870, - "endIndex": 2093, - "textRun": { - "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2093, - "endIndex": 2094, - "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" - } - } - }, - { - "startIndex": 2093, - "endIndex": 2094, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2094, - "endIndex": 2108, - "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" - } - } - }, - { - "startIndex": 2094, - "endIndex": 2108, - "textRun": { - "content": "5/31 Sprint 5\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2108, - "endIndex": 2226, - "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" - } - } - }, - { - "startIndex": 2108, - "endIndex": 2226, - "textRun": { - "content": "What is a VERY successful root cause analysis? = deep enough root cause to prevent similar issue from happening again\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 2226, - "endIndex": 2499, - "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" - } - } - }, - { - "startIndex": 2226, - "endIndex": 2499, - "textRun": { - "content": "\t-> student’s realization of deep cause and how to effectively avoid same thing in the future (e.g. didn’t understand that user study design need obstacle, keep in mind in the future) (e.g. metacognitive barriers, if not resolved, very likely to lead to same/other issues)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2499, - "endIndex": 2589, - "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" - } - } - }, - { - "startIndex": 2499, - "endIndex": 2589, - "textRun": { - "content": "\t-> mentor gained new understanding of deep cause, class of issue, ways to approach issue\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2589, - "endIndex": 2710, - "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" - } - } - }, - { - "startIndex": 2589, - "endIndex": 2710, - "textRun": { - "content": "\t-> of course, current issue is resolved = student know how to improve, mentor know what happened beyond surface signals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2710, - "endIndex": 2711, - "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" - } - } - }, - { - "startIndex": 2710, - "endIndex": 2711, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2711, - "endIndex": 2745, - "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" - } - } - }, - { - "startIndex": 2711, - "endIndex": 2744, - "textRun": { - "content": "Obstacles to root cause analysis:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 2744, - "endIndex": 2745, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2745, - "endIndex": 2773, - "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" - } - } - }, - { - "startIndex": 2745, - "endIndex": 2773, - "textRun": { - "content": "\trecall on the spot is hard\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2773, - "endIndex": 2954, - "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" - } - } - }, - { - "startIndex": 2773, - "endIndex": 2954, - "textRun": { - "content": "\tlack of context to get deep, because deeper causes are often more specific to the situation/student (e.g. misunderstanding specific to one student, personal metacognitive barrier)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 315, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 315, - "textRun": { - "content": " A block-based scripting environment in which mentors can quickly and easily express their strategies into computer-executable scripts. OSE aims to enable mentors to express their thoughts freely at their natural level of thinking, by providing them with low-level data as well as high-level pre-built functions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 315, - "endIndex": 316, - "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" - } - } - }, - { - "startIndex": 315, - "endIndex": 316, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 316, - "endIndex": 703, - "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" - } - } - }, - { - "startIndex": 316, - "endIndex": 318, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 318, - "endIndex": 703, - "textRun": { - "content": " OSE provides a procedural scripting process that includes a script structure (first specify the scope of the script, then construct a detector and strategies) and guidelines (e.g. “users always forget to specify when their script should be executed, have you specified that in your script?”) to guide users to think in a way that align with the OS script structure and execution flow\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 703, - "endIndex": 704, - "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" - } - } - }, - { - "startIndex": 703, - "endIndex": 704, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 704, - "endIndex": 810, - "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" - } - } - }, - { - "startIndex": 704, - "endIndex": 706, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 706, - "endIndex": 810, - "textRun": { - "content": " OSE guides mentor to scaffold and form hypotheses about potential root causes underlying the situation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 810, - "endIndex": 811, - "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" - } - } - }, - { - "startIndex": 810, - "endIndex": 811, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 811, - "endIndex": 913, - "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" - } - } - }, - { - "startIndex": 811, - "endIndex": 813, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 813, - "endIndex": 913, - "textRun": { - "content": " OSE help mentors diagnose key root causes by promoting context-awareness of the mentee’s situation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 913, - "endIndex": 914, - "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" - } - } - }, - { - "startIndex": 913, - "endIndex": 914, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 914, - "endIndex": 1027, - "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" - } - } - }, - { - "startIndex": 914, - "endIndex": 1027, - "textRun": { - "content": "-> OSE guide mentors to formulate tailored strategies by prompting them to design strategies for each root cause\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1027, - "endIndex": 1028, - "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" - } - } - }, - { - "startIndex": 1027, - "endIndex": 1028, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1028, - "endIndex": 1029, - "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" - } - } - }, - { - "startIndex": 1028, - "endIndex": 1029, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1029, - "endIndex": 1030, - "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" - } - } - }, - { - "startIndex": 1029, - "endIndex": 1030, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1030, - "endIndex": 1031, - "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" - } - } - }, - { - "startIndex": 1030, - "endIndex": 1031, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1031, - "endIndex": 1263, - "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" - } - } - }, - { - "startIndex": 1031, - "endIndex": 1263, - "textRun": { - "content": "-> Depend on the mentor to explain why their strategies are important, but mentors don’t always explain or have it in mind, and mentees neither have the background knowledge to understand it nor the mindset to contemplate the whys.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1263, - "endIndex": 1420, - "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" - } - } - }, - { - "startIndex": 1263, - "endIndex": 1420, - "textRun": { - "content": "-> after script triggers, before discussion, both mentor and mentee prepare using the same schema to establish a common ground upon which to build diagnosis\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1420, - "endIndex": 1514, - "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" - } - } - }, - { - "startIndex": 1420, - "endIndex": 1514, - "textRun": { - "content": "-> user formulate hypothesis and write down potential root causes they currently have in mind\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 240, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 240, - "textRun": { - "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 240, - "endIndex": 241, - "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" - } - } - }, - { - "startIndex": 240, - "endIndex": 241, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 241, - "endIndex": 431, - "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" - } - } - }, - { - "startIndex": 241, - "endIndex": 243, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 243, - "endIndex": 431, - "textRun": { - "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 431, - "endIndex": 432, - "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" - } - } - }, - { - "startIndex": 431, - "endIndex": 432, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 432, - "endIndex": 742, - "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" - } - } - }, - { - "startIndex": 432, - "endIndex": 434, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 434, - "endIndex": 742, - "textRun": { - "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing so that they can help mentees achieve better long-term growth through tailored strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 742, - "endIndex": 743, - "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" - } - } - }, - { - "startIndex": 742, - "endIndex": 743, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 743, - "endIndex": 1002, - "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" - } - } - }, - { - "startIndex": 743, - "endIndex": 745, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 745, - "endIndex": 1002, - "textRun": { - "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1002, - "endIndex": 1003, - "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" - } - } - }, - { - "startIndex": 1002, - "endIndex": 1003, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1003, - "endIndex": 1004, - "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" - } - } - }, - { - "startIndex": 1003, - "endIndex": 1004, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2892100, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1469600, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "✅/❌ Is this a real example of what the user wants to be able to do?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 271, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 271, - "textRun": { - "content": "✅/❌ Is your outcome written in a way that will be measurable when you test? (i.e., will you be able to know that your design characteristic successfully helped your user achieve their desired outcome?)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "✅/❌ Does this obstacle encompass a core user struggle?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 152, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 152, - "textRun": { - "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired outcome from being reached?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 152, - "endIndex": 153, - "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" - } - } - }, - { - "startIndex": 152, - "endIndex": 153, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 332, - "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" - } - } - }, - { - "startIndex": 153, - "endIndex": 332, - "textRun": { - "content": "✅/❌ Does the obstacle present an argument (reason) behind why existing designs are not reaching the outcome (as opposed to just rephrasing that the outcome is not being reached)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 332, - "endIndex": 333, - "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" - } - } - }, - { - "startIndex": 332, - "endIndex": 333, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 333, - "endIndex": 436, - "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" - } - } - }, - { - "startIndex": 333, - "endIndex": 436, - "textRun": { - "content": "✅/❌ Is the statement of the obstacle something that is concrete enough to be measurable or observable?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 110, - "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" - } - } - }, - { - "endIndex": 110, - "textRun": { - "content": "✅/❌ Is your characteristic sufficiently detailed such that someone could go and implement it as you intended?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 110, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 110, - "endIndex": 111, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 342, - "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" - } - } - }, - { - "startIndex": 111, - "endIndex": 342, - "textRun": { - "content": "✅/❌ Does the characteristic clearly distinguish your design from other possible designs (especially existing designs that do not solve the problem)? (i.e., are you sure that it is not too similar to other, unsuccessful solutions?)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 342, - "endIndex": 343, - "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" - } - } - }, - { - "startIndex": 342, - "endIndex": 343, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 343, - "endIndex": 446, - "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" - } - } - }, - { - "startIndex": 343, - "endIndex": 446, - "textRun": { - "content": "✅/❌ Does your proposed characteristic actually resolve the obstacle and help the user meet their goal?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 107, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 34, - "textRun": { - "content": "how", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 107, - "textRun": { - "content": " the characteristic overcomes the obstacle to reach the desired outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 108, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 108, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Does this argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 142, - "textRun": { - "content": "why", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 215, - "textRun": { - "content": " the characteristic overcomes the obstacle to reach the desired outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1469600, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_16", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 39, - "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" - } - } - }, - { - "endIndex": 38, - "textRun": { - "content": "Mysore Template: Design Argument {New}", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 38, - "endIndex": 39, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_17", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_14:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_18", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_19", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_19" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_26", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_27", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 729550, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Desired Interface Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 174, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 173, - "textRun": { - "content": "What do you want your interface to enable users to do? Why is having this interface outcome or feature important to realizing your design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 173, - "endIndex": 174, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Obstacle to Interface Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 30, - "endIndex": 160, - "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" - } - } - }, - { - "startIndex": 30, - "endIndex": 159, - "textRun": { - "content": "How could things go wrong in trying to create an interface feature that instantiates the design argument? Why might this happen? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 160, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Design Inspirations\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 87, - "textRun": { - "content": "Has a similar problem been solved in any other domain? If so, how?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Interface Feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 233, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 233, - "textRun": { - "content": "What is the feature or affordance that your system provides to overcome the interface obstacle to reach the desired interface outcome? How is this feature distinguished from existing approaches that would not work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Argument for your interface feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 127, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 127, - "textRun": { - "content": "Why would your interface feature overcome the obstacle to reaching your interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 729550, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2720275, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 164, - "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" - } - } - }, - { - "endIndex": 164, - "textRun": { - "content": "A Mentors should be able to express their strategies into computer-executable scripts (OS scripts) to surface support strategies at appropriate times and settings.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 319, - "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" - } - } - }, - { - "startIndex": 165, - "endIndex": 319, - "textRun": { - "content": "B Mentors should be able to gain an in depth understanding of what mentees are struggling with, why they are struggling with it, and how they are working\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 319, - "endIndex": 320, - "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" - } - } - }, - { - "startIndex": 319, - "endIndex": 320, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 320, - "endIndex": 542, - "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" - } - } - }, - { - "startIndex": 320, - "endIndex": 542, - "textRun": { - "content": "C Given they can do B, mentors should be able to help their mentees learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 542, - "endIndex": 543, - "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" - } - } - }, - { - "startIndex": 542, - "endIndex": 543, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 218, - "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" - } - } - }, - { - "endIndex": 218, - "textRun": { - "content": "The level of abstraction the blocks get at is tricky. How do you find a way to present the code constructs in a more high-level form without it being too generic/hard to understand what it exactly does on the backend?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 219, - "endIndex": 224, - "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" - } - } - }, - { - "startIndex": 219, - "endIndex": 224, - "textRun": { - "content": "TODO\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "TODO\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 139, - "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" - } - } - }, - { - "endIndex": 139, - "textRun": { - "content": "-> A block-based scripting environment with human-readable blocks that includes low-level data as well as high-level pre-built functions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "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" - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 140, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 140, - "endIndex": 202, - "textRun": { - "content": "-> OSE provides a procedural scripting process that includes:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 332, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 202, - "endIndex": 215, - "textRun": { - "content": "A step guide ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 332, - "textRun": { - "content": "that explains the script structure (first specify the scope of the script, then construct a detector and strategies)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 332, - "endIndex": 333, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 332, - "endIndex": 333, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 333, - "endIndex": 574, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 333, - "endIndex": 343, - "textRun": { - "content": "Guidelines", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 343, - "endIndex": 574, - "textRun": { - "content": " for writing scripts (e.g. “users always forget to specify when their script should be executed, have you specified that in your script?”) to guide users to think in a way that align with the OS script structure and execution flow\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 574, - "endIndex": 841, - "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" - } - } - }, - { - "startIndex": 574, - "endIndex": 841, - "textRun": { - "content": "-> OSE provides a workflow that starts by breaking down a problem into hypotheses about potential root causes, then diagnose key root causes based on the context, and lastly enact a tailored strategy to address the key root cause. This workflow is achieved through: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 841, - "endIndex": 941, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 841, - "endIndex": 860, - "textRun": { - "content": "Scaffolding prompts", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 860, - "endIndex": 941, - "textRun": { - "content": " that prompt the user to think about different root causes behind the situation.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 941, - "endIndex": 942, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 941, - "endIndex": 942, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 942, - "endIndex": 1024, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 942, - "endIndex": 955, - "textRun": { - "content": "Alert Message", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 955, - "endIndex": 1024, - "textRun": { - "content": " that provides context information to help diagnose key root causes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1024, - "endIndex": 1025, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 1024, - "endIndex": 1025, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1025, - "endIndex": 1140, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 1025, - "endIndex": 1087, - "textRun": { - "content": "One-to-one or one-to-more mapping of root cause to strategies ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1087, - "endIndex": 1140, - "textRun": { - "content": "that guide mentors to formulate tailored strategies \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.mxioyg52qv53": { - "listId": "kix.mxioyg52qv53", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "TODO\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.tiarl0j5q73": { - "listId": "kix.tiarl0j5q73", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2720275, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1355675, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 98, - "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" - } - } - }, - { - "endIndex": 98, - "textRun": { - "content": "✅/❌ Do you explain why your interface outcome is important for implementing your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired interface outcome from being reached?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 361, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 361, - "textRun": { - "content": "✅/❌ Does the obstacle present an argument (reason) behind why it might be difficult to create an interface feature that meets the outcome? In other words, do you argue why the obstacle may hinder efficiency, learnability, or safety within your interface?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 101, - "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" - } - } - }, - { - "endIndex": 101, - "textRun": { - "content": "✅/❌ Did you consider domains far from the one of your project but whose interface needs are similar?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 101, - "endIndex": 102, - "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" - } - } - }, - { - "startIndex": 101, - "endIndex": 102, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 102, - "endIndex": 225, - "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" - } - } - }, - { - "startIndex": 102, - "endIndex": 225, - "textRun": { - "content": "✅/❌ For each idea, do you explain why the obstacle they attempt to overcome is similar to the obstacle your interface has?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 69, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "✅/❌ Does your feature consider aspects of efficiency in interaction?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 141, - "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" - } - } - }, - { - "startIndex": 70, - "endIndex": 141, - "textRun": { - "content": "✅/❌ Does your feature consider aspects of learnability in interaction?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 141, - "endIndex": 142, - "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" - } - } - }, - { - "startIndex": 141, - "endIndex": 142, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 207, - "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" - } - } - }, - { - "startIndex": 142, - "endIndex": 207, - "textRun": { - "content": "✅/❌ Does your feature consider aspects of safety in interaction?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "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" - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 208, - "endIndex": 319, - "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" - } - } - }, - { - "startIndex": 208, - "endIndex": 319, - "textRun": { - "content": "✅/❌ Does your proposed feature actually resolve the interface obstacle and meet the desired interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 130, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 34, - "textRun": { - "content": "how", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 130, - "textRun": { - "content": " the interface feature overcomes the interface obstacle to reach the desired interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 130, - "endIndex": 131, - "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" - } - } - }, - { - "startIndex": 130, - "endIndex": 131, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 131, - "endIndex": 261, - "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" - } - } - }, - { - "startIndex": 131, - "endIndex": 162, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 162, - "endIndex": 165, - "textRun": { - "content": "why", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 261, - "textRun": { - "content": " the interface feature overcomes the interface obstacle to reach the desired interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1355675, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_28", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 32, - "textRun": { - "content": "Mysore Template: Interface Model {New}", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 32, - "endIndex": 33, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_29", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "[Grace & Jordan]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 17, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_26:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_30", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_31", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_31" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_32", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_33", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 696425, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Restate an interface feature you plan to implement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 155, - "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" - } - } - }, - { - "startIndex": 51, - "endIndex": 155, - "textRun": { - "content": "Based on your interface model, what is one feature or interaction you want to implement in your system?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Desired system outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 112, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 111, - "textRun": { - "content": "What does your system need to be able to do in order to implement the interface feature?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Obstacle to reaching system outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 127, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 126, - "textRun": { - "content": "What could go wrong when trying to implement the interface feature? Why might this happen?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 126, - "endIndex": 127, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "System method or technique\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 209, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 209, - "textRun": { - "content": "What is the method or technique that you system includes in order to implement the interface feature? How is this feature distinguished from existing approaches that would not work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Argument for your system method/technique\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 121, - "textRun": { - "content": "Why would your approach overcome the obstacle to reaching your system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 696425, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2833525, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2833525, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1242425, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "No checklist questions. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 212, - "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" - } - } - }, - { - "endIndex": 212, - "textRun": { - "content": "✅/❌ Do you explain why your system outcome is important for implementing your interface feature? In other words, do you consider why would your interaction would fail without the system outcome you have written?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 102, - "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" - } - } - }, - { - "endIndex": 102, - "textRun": { - "content": "✅/❌ Does the obstacle clearly describe how it prevents the desired system outcome from being reached?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 102, - "endIndex": 103, - "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" - } - } - }, - { - "startIndex": 102, - "endIndex": 103, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 234, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 234, - "textRun": { - "content": "✅/❌ Does the obstacle present an argument (reason) behind why it might be difficult to implement an interface feature as intended?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 234, - "endIndex": 235, - "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" - } - } - }, - { - "startIndex": 234, - "endIndex": 235, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 235, - "endIndex": 369, - "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" - } - } - }, - { - "startIndex": 235, - "endIndex": 369, - "textRun": { - "content": "✅/❌ Do you consider existing implementations (e.g., algorithms; APIs; other deployed systems) that can already address this obstacle?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 117, - "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" - } - } - }, - { - "endIndex": 117, - "textRun": { - "content": "✅/❌Is your description of the proposed method or technique precise enough that someone else can go and implement it?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 117, - "endIndex": 118, - "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" - } - } - }, - { - "startIndex": 117, - "endIndex": 118, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 223, - "textRun": { - "content": "✅/❌ Does your proposed feature actually resolve the system obstacle and meet the desired system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 130, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 34, - "textRun": { - "content": "how", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 130, - "textRun": { - "content": " the system method/technique overcomes the system obstacle to reach the desired system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 130, - "endIndex": 131, - "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" - } - } - }, - { - "startIndex": 130, - "endIndex": 131, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 131, - "endIndex": 261, - "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" - } - } - }, - { - "startIndex": 131, - "endIndex": 162, - "textRun": { - "content": "✅/❌ Does your argument explain ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 162, - "endIndex": 165, - "textRun": { - "content": "why", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 261, - "textRun": { - "content": " the system method/technique overcomes the system obstacle to reach the desired system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1242425, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_34", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Mysore Template: System Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_35", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_32:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_36", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_37", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_37" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g226bd032f2e_0_0", - "pageElements": [ - { - "objectId": "g226bd032f2e_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 63, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 62, - "textRun": { - "content": "Takeaways from User Study Root Cause Analysis", - "style": {} - } - }, - { - "startIndex": 62, - "endIndex": 63, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g226bd032f2e_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g226bd032f2e_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g226bd032f2e_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g226bd032f2e_0_3" - } - }, - "isSkipped": true - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g226bd032f2e_0_4", - "pageElements": [ - { - "objectId": "g226bd032f2e_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 188, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "endIndex": 188, - "textRun": { - "content": "When trying to describing the strategy. It is something I have gotten coaching about, when I see a demo with dummy inputs, it frustrates me because we should aim to make it understanding.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 462, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 188, - "endIndex": 462, - "textRun": { - "content": "As writing the strategy and the reasons why, I was thinking on my feet. It was hard to explain why this is an important practice, because that’s what I’ve been told. I got feedback on in the past, I didn’t question so much the why until I have to explain it in the moment. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 462, - "endIndex": 930, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 462, - "endIndex": 930, - "textRun": { - "content": "‘Knowing the example you’re building towards can help you scope to what features is gonna just make that one example work’ ‘beyond completing the tasks themselves, the good representation for a tech story is demonstrating and checking if the current implementation supports the user journey, so it needs to be a real user journey, and we have to put ourselves in the shoes.’\u000bgot into the whys of why this important. Planning towards a demo, or testing through cases. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 930, - "endIndex": 1030, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.wzabc648okj6", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 930, - "endIndex": 1030, - "textRun": { - "content": "How did you construct your detector, things to pay attention to, direct ways of trying to detect it\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 1030, - "endIndex": 1068, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.wzabc648okj6", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 1030, - "endIndex": 1067, - "textRun": { - "content": "GitHub reminded me ways of doing tech", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 1067, - "endIndex": 1068, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.81n4ev1xoxu8": { - "listId": "kix.81n4ev1xoxu8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.nm59wlfv7kbh": { - "listId": "kix.nm59wlfv7kbh", - "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 - } - } - } - } - }, - "kix.wzabc648okj6": { - "listId": "kix.wzabc648okj6", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 239, - "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" - } - } - }, - { - "endIndex": 239, - "textRun": { - "content": "Recall - RC2 was something Oscar did run into. Also had RC3 “didn’t realized it was a priority”, in retrospect, the strategy would be have really great to explain to him, not just Ryan told me to do the demo, but why is the demo important\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 239, - "endIndex": 240, - "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" - } - } - }, - { - "startIndex": 239, - "endIndex": 240, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 48, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Having scaffolding about how to find the causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "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" - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 113, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.31gr3vlcpg1b", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 49, - "endIndex": 113, - "textRun": { - "content": "Broke down into different variables, focus on each individually\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 113, - "endIndex": 325, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.31gr3vlcpg1b", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 113, - "endIndex": 325, - "textRun": { - "content": "I’m a fan of specifying concept variables for myself and visually group things. It was nice to leave things separate, so I can choose when to work on things and address them separately if some parts doesn’t run.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 325, - "endIndex": 365, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.31gr3vlcpg1b", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 325, - "endIndex": 365, - "textRun": { - "content": "Think about how the detector would fail\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 365, - "endIndex": 394, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.o2463xicuh0m", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 365, - "endIndex": 394, - "textRun": { - "content": "Break situation into signals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 394, - "endIndex": 422, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "magnitude": 12, - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 12, - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.o2463xicuh0m", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - } - }, - { - "startIndex": 394, - "endIndex": 421, - "textRun": { - "content": "Contain logic was intuitive", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Times New Roman", - "fontSize": { - "magnitude": 11, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Times New Roman", - "weight": 400 - } - } - } - }, - { - "startIndex": 421, - "endIndex": 422, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.21n3yx908xp4": { - "listId": "kix.21n3yx908xp4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.31gr3vlcpg1b": { - "listId": "kix.31gr3vlcpg1b", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.4db35bz3of4o": { - "listId": "kix.4db35bz3of4o", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.fhc3css0xp70": { - "listId": "kix.fhc3css0xp70", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.o2463xicuh0m": { - "listId": "kix.o2463xicuh0m", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "endIndex": 30, - "textRun": { - "content": "Root cause: not case specific\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 30, - "endIndex": 89, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 30, - "endIndex": 89, - "textRun": { - "content": "Root cause analysis easier on specific part of the problem\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 89, - "endIndex": 137, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 89, - "endIndex": 137, - "textRun": { - "content": "Scaffolding and keep asking follow up questions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 137, - "endIndex": 211, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 137, - "endIndex": 211, - "textRun": { - "content": "Good balance of challenging student (reflection e,g.) and support student\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 211, - "endIndex": 508, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "5.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 211, - "endIndex": 508, - "textRun": { - "content": "Student’s perspective: personal growth from root cause analysis\u000b-> Challenging Jordan to reflect, forced to reflect on decision I made while still feeling supported, drawing connections\u000b-> student have learned something new about themselves, their way of working\u000b-> growth, avoiding same mistake,\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 508, - "endIndex": 574, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "6.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 508, - "endIndex": 574, - "textRun": { - "content": "SIG meeting: focus on sprint, risk, plan for the future vs focus \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 574, - "endIndex": 949, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "7.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 574, - "endIndex": 949, - "textRun": { - "content": "Ineffective about list of RC:\u000b-> discouraging follow-up questions, because it might be encouraging a specific of approaching the issue (kapil: ruling out root cause)\u000b-> multiple causes + specific to students and project = list of root cause not inclusive\u000b-> lack of scaffolding\u000b-> mentor’s various understanding of what root cause is (action-oriented vs reflection-oriented)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 949, - "endIndex": 1412, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "8.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 949, - "endIndex": 1412, - "textRun": { - "content": "How to help mentor scaffold hypothesis:\u000b-> reflection-oriented: challenge student to reflect -> follow-up questions\u000b-> make student feel supported while they do reflection\u000b-> Awareness for multiple and hidden causes\u000b-> establish clear goal: none-case-specific student personal growth -> assess mentor’s level of understanding in relation to this goal -> ‘who can define the appropriate depth of root cause analysis? -> help mentors best determine for themselves’\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1412, - "endIndex": 1413, - "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" - } - } - }, - { - "startIndex": 1412, - "endIndex": 1413, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1413, - "endIndex": 1425, - "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" - } - } - }, - { - "startIndex": 1413, - "endIndex": 1425, - "textRun": { - "content": "Limitation:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1425, - "endIndex": 1515, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.odaj9w5s8tdv", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1425, - "endIndex": 1515, - "textRun": { - "content": "Might have been more open with Ryan (talk with a tone that makes students feel supported)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.anp8oh6h78lg": { - "listId": "kix.anp8oh6h78lg", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.odaj9w5s8tdv": { - "listId": "kix.odaj9w5s8tdv", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 120, - "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" - } - } - }, - { - "endIndex": 120, - "textRun": { - "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "textRun": { - "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "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" - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 986350, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1016775, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 4854875, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g226bd032f2e_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g226bd032f2e_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g226bd032f2e_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g226bd032f2e_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g226bd032f2e_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g226bd032f2e_0_9" - } - }, - "isSkipped": true - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g24afab86e39_0_11", - "pageElements": [ - { - "objectId": "g24afab86e39_0_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 57, - "textRun": { - "content": "Takeaways from User Testing (With HaoQi)", - "style": {} - } - }, - { - "startIndex": 57, - "endIndex": 58, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g24afab86e39_0_11:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g24afab86e39_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g24afab86e39_0_14", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g24afab86e39_0_14" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g24afab86e39_0_5", - "pageElements": [ - { - "objectId": "g24afab86e39_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Goal for this activity: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 93, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 25, - "endIndex": 93, - "textRun": { - "content": "Observe to see if OSE would be helpful during the diagnosis process\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 186, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 93, - "endIndex": 186, - "textRun": { - "content": "Learn how useful each affordances were and how the mentor used them in his diagnosis process\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.81n4ev1xoxu8": { - "listId": "kix.81n4ev1xoxu8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.nm59wlfv7kbh": { - "listId": "kix.nm59wlfv7kbh", - "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 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 3, - "textRun": { - "content": "yes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 4, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 67, - "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" - } - } - }, - { - "endIndex": 67, - "textRun": { - "content": "Mentor uses the affordances in according to his diagnosis process.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 67, - "endIndex": 68, - "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" - } - } - }, - { - "startIndex": 67, - "endIndex": 68, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.21n3yx908xp4": { - "listId": "kix.21n3yx908xp4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.4db35bz3of4o": { - "listId": "kix.4db35bz3of4o", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.fhc3css0xp70": { - "listId": "kix.fhc3css0xp70", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 100, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.gizt07tdx4rt", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "endIndex": 100, - "textRun": { - "content": "Lack visual identifier for mentor to identify what project or whose project they are diagnosing for\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 100, - "endIndex": 186, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.gizt07tdx4rt", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 100, - "endIndex": 186, - "textRun": { - "content": "Mentors don’t want their notes to be seen, which prevent mentees to see the interface\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 186, - "endIndex": 387, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.gizt07tdx4rt", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 186, - "endIndex": 387, - "textRun": { - "content": "List of root causes not quite right (a bit vague) : ex: sprint log stories tend to be vague (explanation: it’s not that students don’t plan anything in their stories, it’s that their stories is vague)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 387, - "endIndex": 641, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.gizt07tdx4rt", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 387, - "endIndex": 641, - "textRun": { - "content": "Mentor preferred to receive verbal update by asking question ( + asking mentees to open up their writing spaces) rather than looking at those documents themselves beforehand. (Writing things down is meant for the person who wrote them to stay organized)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.anp8oh6h78lg": { - "listId": "kix.anp8oh6h78lg", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.gizt07tdx4rt": { - "listId": "kix.gizt07tdx4rt", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 120, - "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" - } - } - }, - { - "endIndex": 120, - "textRun": { - "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "textRun": { - "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "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" - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 986350, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2935825, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2935825, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g24afab86e39_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g24afab86e39_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g24afab86e39_0_5:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g24afab86e39_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g24afab86e39_0_10", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g24afab86e39_0_10" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22408989adf_0_0", - "pageElements": [ - { - "objectId": "g22408989adf_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 46, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 45, - "textRun": { - "content": "Takeaways from Status Update", - "style": {} - } - }, - { - "startIndex": 45, - "endIndex": 46, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22408989adf_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22408989adf_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22408989adf_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22408989adf_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22408989adf_0_4", - "pageElements": [ - { - "objectId": "g22408989adf_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Goal for this activity: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 170, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 25, - "endIndex": 170, - "textRun": { - "content": "Let mentor and mentees collectively script for a situation that mentor have chosen, see if mentors discussing with students help improve scripts\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 170, - "endIndex": 229, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.81n4ev1xoxu8", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 170, - "endIndex": 229, - "textRun": { - "content": "Obtain comprehensive, good scripts that we can deploy soon\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.81n4ev1xoxu8": { - "listId": "kix.81n4ev1xoxu8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.nm59wlfv7kbh": { - "listId": "kix.nm59wlfv7kbh", - "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 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 3, - "textRun": { - "content": "yes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 4, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 57, - "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" - } - } - }, - { - "endIndex": 57, - "textRun": { - "content": "Mentors discussing with students helped improve scripts:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 125, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.4db35bz3of4o", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 57, - "endIndex": 125, - "textRun": { - "content": "“Brilliant Insights from students about what’s actually happening” \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 153, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.4db35bz3of4o", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 125, - "endIndex": 153, - "textRun": { - "content": "“Mentor is always guessing”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 221, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.4db35bz3of4o", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 153, - "endIndex": 221, - "textRun": { - "content": "“This time students directly tell me, came up with good strategies”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 221, - "endIndex": 354, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.4db35bz3of4o", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 221, - "endIndex": 354, - "textRun": { - "content": "Haoqi’s group contributed more than half of the root causes by thinking through challenges for each of them from personal experience\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 354, - "endIndex": 387, - "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" - } - } - }, - { - "startIndex": 354, - "endIndex": 387, - "textRun": { - "content": "Dani coming up with root causes:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 387, - "endIndex": 421, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.21n3yx908xp4", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 387, - "endIndex": 421, - "textRun": { - "content": "“Drawing from my past experience“\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 421, - "endIndex": 536, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.21n3yx908xp4", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 421, - "endIndex": 536, - "textRun": { - "content": "“Break down task of updating canvas into subtasks, failure of subtasks can lead to failure of the updating canvas”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 536, - "endIndex": 573, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.21n3yx908xp4", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 536, - "endIndex": 573, - "textRun": { - "content": "Some component of process that BROKE\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 573, - "endIndex": 636, - "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" - } - } - }, - { - "startIndex": 573, - "endIndex": 636, - "textRun": { - "content": "Ella: “hard to come up with causes that don’t feel circular” \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 636, - "endIndex": 730, - "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" - } - } - }, - { - "startIndex": 636, - "endIndex": 730, - "textRun": { - "content": "-> Why is coming up with root causes challenging for experienced mentors? = recall + guessing\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 730, - "endIndex": 870, - "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" - } - } - }, - { - "startIndex": 730, - "endIndex": 870, - "textRun": { - "content": "-> Why is coming up with root causes challenging for novice mentors? = recall + cognitive thinking + lack of understanding of deeper causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 870, - "endIndex": 871, - "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" - } - } - }, - { - "startIndex": 870, - "endIndex": 871, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.21n3yx908xp4": { - "listId": "kix.21n3yx908xp4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.4db35bz3of4o": { - "listId": "kix.4db35bz3of4o", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.fhc3css0xp70": { - "listId": "kix.fhc3css0xp70", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 159, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "endIndex": 159, - "textRun": { - "content": "Even for complex situations that mentors chose, mentors were able to express their high-level understanding of work strategies using the pre-built functions. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 277, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 159, - "endIndex": 277, - "textRun": { - "content": "Interesting approaches adopted by mentors -> new ways of scripting\u000b-> Not just scripts for when something bad happens\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 277, - "endIndex": 468, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 277, - "endIndex": 468, - "textRun": { - "content": "-> check-in/prevention scripts: when started building prototype, check to see if aligned with conceptual diagram/discuss roadblocks -> is root cause analysis suitable for prevention scripts?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 675, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.anp8oh6h78lg", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 468, - "endIndex": 675, - "textRun": { - "content": "Scripting with students helps mentors understand the perspective of mentees by learning how the mentees are working, and what’s lacking in their understandings and what otherwise might have been overlooked.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.anp8oh6h78lg": { - "listId": "kix.anp8oh6h78lg", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 120, - "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" - } - } - }, - { - "endIndex": 120, - "textRun": { - "content": "✅ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 460, - "textRun": { - "content": "✅ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "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" - } - } - }, - { - "startIndex": 461, - "endIndex": 531, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 986350, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2935825, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2935825, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22408989adf_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22408989adf_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22408989adf_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22408989adf_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22408989adf_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22408989adf_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g223d36f6eaa_0_0", - "pageElements": [ - { - "objectId": "g223d36f6eaa_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 59, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "textRun": { - "content": "Takeaways from RC User Testing(with Dani)", - "style": {} - } - }, - { - "startIndex": 58, - "endIndex": 59, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g223d36f6eaa_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g223d36f6eaa_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g223d36f6eaa_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g223d36f6eaa_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g223d36f6eaa_0_4", - "pageElements": [ - { - "objectId": "g223d36f6eaa_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 47, - "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" - } - } - }, - { - "endIndex": 47, - "textRun": { - "content": "Procrastinating + feel overwhelmed by the task\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 47, - "endIndex": 48, - "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" - } - } - }, - { - "startIndex": 47, - "endIndex": 48, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 48, - "endIndex": 86, - "textRun": { - "content": "Focus too much on doing, not thinking\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 165, - "textRun": { - "content": "-> producing a prototype. they‘re not planning before they execute a user test\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 165, - "endIndex": 166, - "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" - } - } - }, - { - "startIndex": 165, - "endIndex": 166, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 166, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 166, - "endIndex": 198, - "textRun": { - "content": "Don’t know how to update canvas\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 199, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 199, - "endIndex": 223, - "textRun": { - "content": "Forgot to update canvas\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 223, - "endIndex": 224, - "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" - } - } - }, - { - "startIndex": 223, - "endIndex": 224, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 224, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 224, - "endIndex": 258, - "textRun": { - "content": "Don’t know where to update canvas\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 291, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 291, - "textRun": { - "content": "Don’t know what to say on canvas\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 291, - "endIndex": 292, - "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" - } - } - }, - { - "startIndex": 291, - "endIndex": 292, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 292, - "endIndex": 326, - "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" - } - } - }, - { - "startIndex": 292, - "endIndex": 326, - "textRun": { - "content": "“Drawing from my past experience“\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 326, - "endIndex": 441, - "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" - } - } - }, - { - "startIndex": 326, - "endIndex": 441, - "textRun": { - "content": "“Break down task of updating canvas into subtasks, failure of subtasks can lead to failure of the updating canvas”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 441, - "endIndex": 478, - "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" - } - } - }, - { - "startIndex": 441, - "endIndex": 478, - "textRun": { - "content": "Some component of process that BROKE\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1, - "endIndex": 48, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 47, - "textRun": { - "content": "Procrastinating + feel overwhelmed by the task", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 47, - "endIndex": 48, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 48, - "endIndex": 85, - "textRun": { - "content": "Total points committed -> few points\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 184, - "textRun": { - "content": "Strategy -> Ask if they’re using the sprint log, if they are, ask why they’re not committing point\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 184, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 184, - "endIndex": 185, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 185, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 185, - "endIndex": 223, - "textRun": { - "content": "Focus too much on doing, not thinking\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 223, - "endIndex": 302, - "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" - } - } - }, - { - "startIndex": 223, - "endIndex": 302, - "textRun": { - "content": "-> producing a prototype. they‘re not planning before they execute a user test\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 302, - "endIndex": 360, - "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" - } - } - }, - { - "startIndex": 302, - "endIndex": 360, - "textRun": { - "content": "-> 0 points committed, don’t even have stories filled out\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 360, - "endIndex": 380, - "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" - } - } - }, - { - "startIndex": 360, - "endIndex": 380, - "textRun": { - "content": "-> Time last edited\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 119, - "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" - } - } - }, - { - "endIndex": 119, - "textRun": { - "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "textRun": { - "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g223d36f6eaa_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g223d36f6eaa_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g223d36f6eaa_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g223d36f6eaa_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g223d36f6eaa_0_10", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g223d36f6eaa_0_10" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g23729163056_0_0", - "pageElements": [ - { - "objectId": "g23729163056_0_1", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 49, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 49, - "textRun": { - "content": "SP’23 Field Study\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g23729163056_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g23729163056_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g23729163056_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g23729163056_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g23729163056_0_4", - "pageElements": [ - { - "objectId": "g23729163056_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 65, - "textRun": { - "content": "Who will you test your prototype with? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4211800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "Goal 1:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 97, - "textRun": { - "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "textRun": { - "content": "If it helps, we can continue with this workflow.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "textRun": { - "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "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" - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "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" - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 239, - "endIndex": 305, - "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" - } - } - }, - { - "startIndex": 239, - "endIndex": 246, - "textRun": { - "content": "Goal 2:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 246, - "endIndex": 305, - "textRun": { - "content": " See what obstacles mentors face in diagnosing root causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "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" - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "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" - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "textRun": { - "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.txqi0c27zz40": { - "listId": "kix.txqi0c27zz40", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ynplpxhcweip": { - "listId": "kix.ynplpxhcweip", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 41, - "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" - } - } - }, - { - "endIndex": 13, - "textRun": { - "content": "Participants:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 41, - "textRun": { - "content": " 1 mentor and their mentees\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 41, - "endIndex": 42, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 41, - "endIndex": 42, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 54, - "textRun": { - "content": "Recruitment:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 54, - "endIndex": 85, - "textRun": { - "content": " Within DTR, already recruited\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 101, - "textRun": { - "content": "Communication: ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 101, - "endIndex": 121, - "textRun": { - "content": "Slack and in-person\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 136, - "textRun": { - "content": "Access issues:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 136, - "endIndex": 184, - "textRun": { - "content": " We may need temporary access to Slack channels\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5et11dq4lm66": { - "listId": "kix.5et11dq4lm66", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.vzvz2huetn83": { - "listId": "kix.vzvz2huetn83", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 6, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "endIndex": 6, - "textRun": { - "content": "Setup\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 6, - "endIndex": 262, - "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" - } - } - }, - { - "startIndex": 6, - "endIndex": 262, - "textRun": { - "content": "We will read each team’s sprintlogs, canvases, and slack channels to look for signs of struggling. We will draft a description of the problem, take the problem to three experienced mentors, and ask them to come up with a comprehensive list of root causes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 262, - "endIndex": 275, - "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" - } - } - }, - { - "startIndex": 262, - "endIndex": 275, - "textRun": { - "content": "+ strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 275, - "endIndex": 276, - "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" - } - } - }, - { - "startIndex": 275, - "endIndex": 276, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 276, - "endIndex": 288, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 276, - "endIndex": 288, - "textRun": { - "content": "Preparation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 288, - "endIndex": 382, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 288, - "endIndex": 382, - "textRun": { - "content": "Meet with Ryan before is SIG meeting to show him the signals, the root causes, and strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 382, - "endIndex": 451, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 382, - "endIndex": 451, - "textRun": { - "content": "Ryan will think about how he’s gonna use this information during SIG\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 451, - "endIndex": 554, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 451, - "endIndex": 554, - "textRun": { - "content": "Ryan will also examine some context information before SIG to help diagnose the problem if he wants to\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 554, - "endIndex": 555, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 554, - "endIndex": 555, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 555, - "endIndex": 566, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 555, - "endIndex": 566, - "textRun": { - "content": "During SIG\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 566, - "endIndex": 577, - "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" - } - } - }, - { - "startIndex": 566, - "endIndex": 577, - "textRun": { - "content": "Ryan will:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 577, - "endIndex": 638, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.ixxpl7mibqvo", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 577, - "endIndex": 638, - "textRun": { - "content": "Discuss this with his mentees to finish diagnose the problem\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 638, - "endIndex": 697, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.ixxpl7mibqvo", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 638, - "endIndex": 697, - "textRun": { - "content": "Enact strategy that they have designed for that root cause\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 697, - "endIndex": 698, - "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" - } - } - }, - { - "startIndex": 697, - "endIndex": 698, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 698, - "endIndex": 719, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 698, - "endIndex": 719, - "textRun": { - "content": "Post-study Interview\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 719, - "endIndex": 827, - "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" - } - } - }, - { - "startIndex": 719, - "endIndex": 827, - "textRun": { - "content": "We will interview mentors and mentees about how this framework has influenced their mentoring interactions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.50iaokq8q7xd": { - "listId": "kix.50iaokq8q7xd", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.f2d3x4uv8p06": { - "listId": "kix.f2d3x4uv8p06", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ixxpl7mibqvo": { - "listId": "kix.ixxpl7mibqvo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "RC design argument:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 114, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 114, - "textRun": { - "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 114, - "endIndex": 270, - "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" - } - } - }, - { - "startIndex": 114, - "endIndex": 270, - "textRun": { - "content": " “I didn’t think of xxx as a potential root cause but the list of root causes helped me realize that it’s a possible reason why my mentees are struggling.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 270, - "endIndex": 295, - "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" - } - } - }, - { - "startIndex": 270, - "endIndex": 295, - "textRun": { - "content": "-> Observations such as:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 295, - "endIndex": 401, - "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" - } - } - }, - { - "startIndex": 295, - "endIndex": 401, - "textRun": { - "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 401, - "endIndex": 402, - "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" - } - } - }, - { - "startIndex": 401, - "endIndex": 402, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 402, - "endIndex": 403, - "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" - } - } - }, - { - "startIndex": 402, - "endIndex": 403, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.y5c8yds0bxz1": { - "listId": "kix.y5c8yds0bxz1", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4211800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "textRun": { - "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "✅ Do you include who the users are, and how you will recruit them?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 148, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 148, - "textRun": { - "content": "✅ Do you include how you will communicate with your users during your study? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "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" - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 149, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 149, - "endIndex": 237, - "textRun": { - "content": "✅ Do you consider any access issues that may prevent you from running your user tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 91, - "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" - } - } - }, - { - "endIndex": 91, - "textRun": { - "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "textRun": { - "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "textRun": { - "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "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" - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "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" - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "textRun": { - "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "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" - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "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" - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "textRun": { - "content": "✅ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "textRun": { - "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "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" - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "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" - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "textRun": { - "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g23729163056_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g23729163056_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 15, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 14, - "textRun": { - "content": "Grace & Jordan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 14, - "endIndex": 15, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g23729163056_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g23729163056_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g23729163056_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g23729163056_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2211d100668_0_0", - "pageElements": [ - { - "objectId": "g2211d100668_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 72, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 71, - "textRun": { - "content": "Takeaways from New Prototype Testing with Gobi + Haoqi", - "style": {} - } - }, - { - "startIndex": 71, - "endIndex": 72, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2211d100668_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2211d100668_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2211d100668_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2211d100668_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2211d100668_0_4", - "pageElements": [ - { - "objectId": "g2211d100668_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 492100, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 492100, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "Goal 1:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 44, - "textRun": { - "content": " Test usability of the new prototype\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "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" - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 159, - "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" - } - } - }, - { - "startIndex": 45, - "endIndex": 52, - "textRun": { - "content": "Goal 2:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 52, - "endIndex": 159, - "textRun": { - "content": " Test whether the interface design communicates the workflow in our conceptual approach clearly to the use\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 15, - "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" - } - } - }, - { - "endIndex": 15, - "textRun": { - "content": "Haoqi and Gobi\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 52, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.8ww6c5a3fgfx", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "endIndex": 52, - "textRun": { - "content": "Very clear understanding of P-RC-C-S, esp with Gobi\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 52, - "endIndex": 157, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.8ww6c5a3fgfx", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 52, - "endIndex": 157, - "textRun": { - "content": "“Reflection on causes is really rich, gave me a way to elicit and model all my expert mentor knowledge.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 227, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.8ww6c5a3fgfx", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 157, - "endIndex": 227, - "textRun": { - "content": "“Really nice to be able to share this knowledge with other SIG heads”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 227, - "endIndex": 293, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.8ww6c5a3fgfx", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 227, - "endIndex": 293, - "textRun": { - "content": "“Super nice to have adata in front of me and see what’s happening\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 293, - "endIndex": 294, - "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" - } - } - }, - { - "startIndex": 293, - "endIndex": 294, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 294, - "endIndex": 419, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.x72cxwiovfm5", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 294, - "endIndex": 419, - "textRun": { - "content": "“Worried that this is hard to use potentially, but even having this there is helpful because they can see what they can try”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.8ww6c5a3fgfx": { - "listId": "kix.8ww6c5a3fgfx", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.x72cxwiovfm5": { - "listId": "kix.x72cxwiovfm5", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Usability Issues:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 63, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.u3oiz7nqzi4", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 18, - "endIndex": 63, - "textRun": { - "content": "The ones from Gobi’s study are already fixed\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 63, - "endIndex": 181, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.u3oiz7nqzi4", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 63, - "endIndex": 181, - "textRun": { - "content": "Big words, scope blocks, lack of brainstorming + scratch space, create text, next button, add button, general context\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 181, - "endIndex": 224, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.u3oiz7nqzi4", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 181, - "endIndex": 224, - "textRun": { - "content": "Context tag -> no idea what they look like\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 224, - "endIndex": 321, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.u3oiz7nqzi4", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 224, - "endIndex": 321, - "textRun": { - "content": "Strategy blockly - too empty, lack of guidance, can’t see potential causes when writing strategy\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 321, - "endIndex": 322, - "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" - } - } - }, - { - "startIndex": 321, - "endIndex": 322, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 322, - "endIndex": 341, - "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" - } - } - }, - { - "startIndex": 322, - "endIndex": 341, - "textRun": { - "content": "Things to look at:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 341, - "endIndex": 373, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 341, - "endIndex": 373, - "textRun": { - "content": "Are we oversimplifying? -> pass\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 373, - "endIndex": 542, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 373, - "endIndex": 542, - "textRun": { - "content": "Coming up with potential causes was very hard, even for Haoqi, requires a lot of recall for a lot of issues -> for scripting study, multiple mentors/iterative scripting\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 542, - "endIndex": 637, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 542, - "endIndex": 637, - "textRun": { - "content": "Should have context info that is more specific to the issue at head e.g. stuff in the detector\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 637, - "endIndex": 876, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 637, - "endIndex": 876, - "textRun": { - "content": "How can the script fit in the mentor’s workflow? Can’t automatically diagnose RC, so how should we approach this? Discuss in-person, ask over slack, how do we provide/support flexibilities like these? Interface for interacting with script\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 876, - "endIndex": 1018, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "5.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 876, - "endIndex": 1018, - "textRun": { - "content": "Strategy part -> over-scripting? Text strategies suffice? -> what are some simple affordances mentors can use with students? => user’s choice\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1018, - "endIndex": 1036, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "6.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1018, - "endIndex": 1036, - "textRun": { - "content": "Detector accuracy\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1036, - "endIndex": 1223, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.to0lkbo83bwp", - "glyph": "7.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1036, - "endIndex": 1223, - "textRun": { - "content": "Have students look at the root causes too? -> student reflection is another additional context indo -> help mentors understand what system can’t observe? -> good practice for student too\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.to0lkbo83bwp": { - "listId": "kix.to0lkbo83bwp", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.u3oiz7nqzi4": { - "listId": "kix.u3oiz7nqzi4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 119, - "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" - } - } - }, - { - "endIndex": 119, - "textRun": { - "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "textRun": { - "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1344975, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1858275, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 3654750, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2211d100668_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2211d100668_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2211d100668_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2211d100668_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2211d100668_0_10", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2211d100668_0_10" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22ca7b496e1_0_0", - "pageElements": [ - { - "objectId": "g22ca7b496e1_0_1", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 60, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 60, - "textRun": { - "content": "SP’23 Root Cause test Week 3\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22ca7b496e1_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22ca7b496e1_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22ca7b496e1_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22ca7b496e1_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22ca7b496e1_0_4", - "pageElements": [ - { - "objectId": "g22ca7b496e1_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 65, - "textRun": { - "content": "Who will you test your prototype with? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4211800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "Design Argument: MORE WHY?\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 29, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 29, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 269, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 31, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 269, - "textRun": { - "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 269, - "endIndex": 270, - "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" - } - } - }, - { - "startIndex": 269, - "endIndex": 270, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 270, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 270, - "endIndex": 272, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 272, - "endIndex": 460, - "textRun": { - "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 461, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 461, - "endIndex": 462, - "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" - } - } - }, - { - "startIndex": 461, - "endIndex": 462, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 462, - "endIndex": 683, - "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" - } - } - }, - { - "startIndex": 462, - "endIndex": 464, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 464, - "endIndex": 683, - "textRun": { - "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 683, - "endIndex": 966, - "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" - } - } - }, - { - "startIndex": 683, - "endIndex": 966, - "textRun": { - "content": "If the mentors had more root causes thinking/more accurate root cause. Wrote better root causes in script -> how does this help? Journey map of mentor’s mind in sig meeting-like process, recall? What is accuracy? Quantity? Most likely root causes vs less likely root causes recalled\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 966, - "endIndex": 967, - "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" - } - } - }, - { - "startIndex": 966, - "endIndex": 967, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 967, - "endIndex": 1226, - "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" - } - } - }, - { - "startIndex": 967, - "endIndex": 969, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 969, - "endIndex": 1226, - "textRun": { - "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1226, - "endIndex": 1227, - "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" - } - } - }, - { - "startIndex": 1226, - "endIndex": 1227, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1227, - "endIndex": 1436, - "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" - } - } - }, - { - "startIndex": 1227, - "endIndex": 1436, - "textRun": { - "content": "-> With a fuller understanding of why the student is struggling, mentors can help mentees achieve better long-term growth through tailored strategies. Strategy suggestions help mentors teach more effectively.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1436, - "endIndex": 1437, - "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" - } - } - }, - { - "startIndex": 1436, - "endIndex": 1437, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1437, - "endIndex": 1448, - "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" - } - } - }, - { - "startIndex": 1437, - "endIndex": 1448, - "textRun": { - "content": "Mini-test:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1448, - "endIndex": 1461, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.i8bz6yml34lx", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 1448, - "endIndex": 1461, - "textRun": { - "content": "Context test\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1461, - "endIndex": 1674, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.i8bz6yml34lx", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 1461, - "endIndex": 1674, - "textRun": { - "content": "The effectiveness of script relies on mentor’s ability to come up with root causes -> research how we can help mentors come up with root causes -> if root cause inexperienced mentors can come up with root causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1674, - "endIndex": 1693, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.i8bz6yml34lx", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 1674, - "endIndex": 1693, - "textRun": { - "content": "Test new prototype\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.i8bz6yml34lx": { - "listId": "kix.i8bz6yml34lx", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.txqi0c27zz40": { - "listId": "kix.txqi0c27zz40", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ynplpxhcweip": { - "listId": "kix.ynplpxhcweip", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 13, - "textRun": { - "content": "Participants:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 42, - "textRun": { - "content": " 4 mentors and their mentees\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 43, - "endIndex": 55, - "textRun": { - "content": "Recruitment:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 55, - "endIndex": 86, - "textRun": { - "content": " Within DTR, already recruited\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 103, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 103, - "textRun": { - "content": "Communication: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 123, - "textRun": { - "content": "Slack and in-person\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 186, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 138, - "textRun": { - "content": "Access issues:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 186, - "textRun": { - "content": " We may need temporary access to Slack channels\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 186, - "endIndex": 187, - "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" - } - } - }, - { - "startIndex": 186, - "endIndex": 187, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 187, - "endIndex": 188, - "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" - } - } - }, - { - "startIndex": 187, - "endIndex": 188, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 188, - "endIndex": 218, - "textRun": { - "content": "For Gobi and HQ: start Week 5\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 251, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 251, - "textRun": { - "content": "For Kapil and Ryan: start Week 6\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 251, - "endIndex": 273, - "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" - } - } - }, - { - "startIndex": 251, - "endIndex": 273, - "textRun": { - "content": "Run study till Week 9\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5et11dq4lm66": { - "listId": "kix.5et11dq4lm66", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.vzvz2huetn83": { - "listId": "kix.vzvz2huetn83", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Scripting Study: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 28, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "1.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 18, - "endIndex": 28, - "textRun": { - "content": "Scripting\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 262, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 262, - "textRun": { - "content": "At the beginning of each week, meet with mentors for 30 minutes to write scripts. They can choose whatever problems they want help with, we will provide some examples that have template scripts that they can adapt for their own use. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 262, - "endIndex": 396, - "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" - } - } - }, - { - "startIndex": 262, - "endIndex": 396, - "textRun": { - "content": "In the first two meeting, we will help them with scripting. Help them with script choice to make sure the script is likely to happen.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 396, - "endIndex": 397, - "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" - } - } - }, - { - "startIndex": 396, - "endIndex": 397, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 397, - "endIndex": 407, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "2.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 397, - "endIndex": 407, - "textRun": { - "content": "Interview\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 407, - "endIndex": 499, - "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" - } - } - }, - { - "startIndex": 407, - "endIndex": 499, - "textRun": { - "content": "Ask mentors how the scripting process went for them, and why they chose a specific problem.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 499, - "endIndex": 500, - "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" - } - } - }, - { - "startIndex": 499, - "endIndex": 500, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 500, - "endIndex": 501, - "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" - } - } - }, - { - "startIndex": 500, - "endIndex": 501, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 501, - "endIndex": 520, - "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" - } - } - }, - { - "startIndex": 501, - "endIndex": 520, - "textRun": { - "content": "Deployment Study: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 520, - "endIndex": 571, - "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" - } - } - }, - { - "startIndex": 520, - "endIndex": 571, - "textRun": { - "content": "If we can get good scripts + root causes thinking…\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 571, - "endIndex": 583, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 571, - "endIndex": 583, - "textRun": { - "content": "Script runs\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 583, - "endIndex": 641, - "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" - } - } - }, - { - "startIndex": 583, - "endIndex": 641, - "textRun": { - "content": "Their script will run and keep running until it triggers.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 641, - "endIndex": 853, - "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" - } - } - }, - { - "startIndex": 641, - "endIndex": 852, - "textRun": { - "content": "When script triggers, the mentor does root cause analysis and deploy strategies as they have scripted. In the process, they might choose to seek out context information or ask their mentees for more information.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 852, - "endIndex": 853, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 853, - "endIndex": 854, - "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" - } - } - }, - { - "startIndex": 853, - "endIndex": 854, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 854, - "endIndex": 855, - "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" - } - } - }, - { - "startIndex": 854, - "endIndex": 855, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 855, - "endIndex": 876, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 855, - "endIndex": 876, - "textRun": { - "content": "Post-study Interview\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 876, - "endIndex": 1030, - "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" - } - } - }, - { - "startIndex": 876, - "endIndex": 1030, - "textRun": { - "content": "After a script has been triggered and dealt with, we will interview mentors and mentees about how the script has influenced their mentoring interactions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1030, - "endIndex": 1031, - "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" - } - } - }, - { - "startIndex": 1030, - "endIndex": 1031, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1031, - "endIndex": 1124, - "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" - } - } - }, - { - "startIndex": 1031, - "endIndex": 1124, - "textRun": { - "content": "Ask mentees about their perspective on why they struggled and compare to mentor’s diagnosis.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.50iaokq8q7xd": { - "listId": "kix.50iaokq8q7xd", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.f2d3x4uv8p06": { - "listId": "kix.f2d3x4uv8p06", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ixxpl7mibqvo": { - "listId": "kix.ixxpl7mibqvo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 13, - "textRun": { - "content": "Translation:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 14, - "textRun": { - "content": "-", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 14, - "endIndex": 57, - "textRun": { - "content": "> mentor are able to create working script\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 128, - "textRun": { - "content": "-> “it was easy to write a script that reflected how I want to mentor”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 128, - "endIndex": 190, - "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" - } - } - }, - { - "startIndex": 128, - "endIndex": 190, - "textRun": { - "content": "-> “I like the structure of the script. It was really clear…”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 190, - "endIndex": 191, - "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" - } - } - }, - { - "startIndex": 190, - "endIndex": 191, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 191, - "endIndex": 204, - "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" - } - } - }, - { - "startIndex": 191, - "endIndex": 204, - "textRun": { - "content": "Root Causes:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 204, - "endIndex": 349, - "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" - } - } - }, - { - "startIndex": 204, - "endIndex": 349, - "textRun": { - "content": "-> “The structure of the script matches my way of thinking about mentoring. It provided a clear structure to approach understanding the problem“\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 349, - "endIndex": 431, - "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" - } - } - }, - { - "startIndex": 349, - "endIndex": 431, - "textRun": { - "content": "-> Mentors are able to come up with root causes quicker and more comprehensively.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 431, - "endIndex": 456, - "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" - } - } - }, - { - "startIndex": 431, - "endIndex": 456, - "textRun": { - "content": "-> Observations such as:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 456, - "endIndex": 562, - "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" - } - } - }, - { - "startIndex": 456, - "endIndex": 562, - "textRun": { - "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 562, - "endIndex": 656, - "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" - } - } - }, - { - "startIndex": 562, - "endIndex": 656, - "textRun": { - "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 656, - "endIndex": 657, - "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" - } - } - }, - { - "startIndex": 656, - "endIndex": 657, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 657, - "endIndex": 666, - "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" - } - } - }, - { - "startIndex": 657, - "endIndex": 666, - "textRun": { - "content": "Context:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 666, - "endIndex": 748, - "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" - } - } - }, - { - "startIndex": 666, - "endIndex": 748, - "textRun": { - "content": "-> Mentors are able to CORRECTLY diagnose the reason why students are struggling.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 748, - "endIndex": 749, - "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" - } - } - }, - { - "startIndex": 748, - "endIndex": 749, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 749, - "endIndex": 750, - "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" - } - } - }, - { - "startIndex": 749, - "endIndex": 750, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.y5c8yds0bxz1": { - "listId": "kix.y5c8yds0bxz1", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4211800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "textRun": { - "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "✅ Do you include who the users are, and how you will recruit them?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 148, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 148, - "textRun": { - "content": "✅ Do you include how you will communicate with your users during your study? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "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" - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 149, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 149, - "endIndex": 237, - "textRun": { - "content": "✅ Do you consider any access issues that may prevent you from running your user tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 91, - "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" - } - } - }, - { - "endIndex": 91, - "textRun": { - "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "textRun": { - "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "textRun": { - "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "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" - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "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" - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "textRun": { - "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "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" - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "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" - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "textRun": { - "content": "✅ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "textRun": { - "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "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" - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "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" - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "textRun": { - "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22ca7b496e1_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22ca7b496e1_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 15, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 14, - "textRun": { - "content": "Grace & Jordan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 14, - "endIndex": 15, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22ca7b496e1_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22ca7b496e1_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22ca7b496e1_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22ca7b496e1_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_0", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.4067, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 59, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "textRun": { - "content": "Takeaways from RC User Testing(with Ryan)", - "style": {} - } - }, - { - "startIndex": 58, - "endIndex": 59, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_34", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_35", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "Goal 1:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 97, - "textRun": { - "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "textRun": { - "content": "If it helps, we can continue with this workflow.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "textRun": { - "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "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" - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "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" - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 239, - "endIndex": 305, - "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" - } - } - }, - { - "startIndex": 239, - "endIndex": 246, - "textRun": { - "content": "Goal 2:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 246, - "endIndex": 305, - "textRun": { - "content": " See what obstacles mentors face in diagnosing root causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "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" - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "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" - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "textRun": { - "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 4, - "textRun": { - "content": "Yes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "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" - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 5, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 5, - "endIndex": 96, - "textRun": { - "content": "One of the mentees couldn’t come to the SIG meeting, but we tested with two other mentees.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 182, - "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" - } - } - }, - { - "endIndex": 182, - "textRun": { - "content": "1. For under-committed, the mentor was able to diagnose the root cause very quickly with direct, in-person communication. (might be due to it’s a relatively straightforward problem)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 477, - "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" - } - } - }, - { - "startIndex": 183, - "endIndex": 477, - "textRun": { - "content": "2. The mentor enacted a very clear workflow going from the under-committed signal, to diagnosing the root cause (handwavy), and then to strategy (a mini session on the importance of sprint log as shared language that provides the mentor with a sense of their progress + how to use sprint log).\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 477, - "endIndex": 478, - "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" - } - } - }, - { - "startIndex": 477, - "endIndex": 478, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 478, - "endIndex": 746, - "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" - } - } - }, - { - "startIndex": 478, - "endIndex": 746, - "textRun": { - "content": "3. This process was peripheral but helpful. The signal we choose didn’t match his plan for the SIG meeting. It was not the most important thing he wanted to focus, but the he thought that “This talk about process was helpful to help me get a sense of their progress.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 746, - "endIndex": 747, - "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" - } - } - }, - { - "startIndex": 746, - "endIndex": 747, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.zhns8wi1swkn": { - "listId": "kix.zhns8wi1swkn", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 84, - "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" - } - } - }, - { - "endIndex": 84, - "textRun": { - "content": "We didn’t get to observe how root cause analysis can be useful to a mentor because:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 153, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 153, - "textRun": { - "content": "1. Under-committed: too surface-level, didn’t have a deep root cause\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 301, - "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" - } - } - }, - { - "startIndex": 153, - "endIndex": 301, - "textRun": { - "content": "2. Diagnosis mostly through direct, in-person communication, very quick for diagnosis -> didn’t get to observe obstacles (for in-person and online)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 301, - "endIndex": 434, - "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" - } - } - }, - { - "startIndex": 301, - "endIndex": 434, - "textRun": { - "content": "3. Signals had too much noise (3 signals observed-1 surface level, 1 false alarm, 1 potentially interesting but didn’t get to test):\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 434, - "endIndex": 435, - "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" - } - } - }, - { - "startIndex": 434, - "endIndex": 435, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 119, - "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" - } - } - }, - { - "endIndex": 119, - "textRun": { - "content": "❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 120, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 90, - "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" - } - } - }, - { - "endIndex": 90, - "textRun": { - "content": "✅Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 195, - "textRun": { - "content": "✅ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 103, - "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" - } - } - }, - { - "endIndex": 103, - "textRun": { - "content": "✅ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 163, - "textRun": { - "content": "✅ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 163, - "endIndex": 164, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 164, - "endIndex": 252, - "textRun": { - "content": "✅ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 459, - "textRun": { - "content": "❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "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" - } - } - }, - { - "startIndex": 459, - "endIndex": 460, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "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" - } - } - }, - { - "startIndex": 460, - "endIndex": 530, - "textRun": { - "content": "❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 198, - "textRun": { - "content": "✅ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 198, - "endIndex": 199, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g219b2f18f42_1_36", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_37", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 8, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "[Grace]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_40", - "size": { - "width": { - "magnitude": 38400, - "unit": "EMU" - }, - "height": { - "magnitude": 51200, - "unit": "EMU" - } - }, - "transform": { - "shearX": 23.9932, - "shearY": -35.9225, - "translateX": 6961200, - "translateY": 3605575.2874999996, - "unit": "EMU" - }, - "image": { - "contentUrl": "https://lh7-us.googleusercontent.com/m9qWC4WPZhzXaFtcIuYDagpvv-ZVBuxW0RCZYthGohv0LSXEBbzn5HBHFCX_DwLP-Yuvb8gyBNOiP7DBdASnj37J2Tea0z-kgQpqq9XapplkJrW5sz30PDM1nGoGJTBcqOeOI-Dy4EnmQJVzu-5GXOBBBoMTeus2bMI=s2048", - "imageProperties": { - "cropProperties": { - "leftOffset": 0.1336741, - "topOffset": 0.30438057, - "bottomOffset": 0.1169492 - }, - "outline": { - "outlineFill": { - "solidFill": { - "color": { - "themeColor": "DARK2" - }, - "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" - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_34:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_38", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_39", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_39" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_41", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_42", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 61, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 61, - "textRun": { - "content": "SP’23 Root Cause test Week 4 \n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_41:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_43", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_44", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_44" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_45", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_46", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 40, - "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" - } - } - }, - { - "endIndex": 40, - "textRun": { - "content": "High-Level Findings From Previous Study\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 191, - "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" - } - } - }, - { - "startIndex": 40, - "endIndex": 190, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 190, - "endIndex": 191, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 60, - "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" - } - } - }, - { - "endIndex": 60, - "textRun": { - "content": "How would you address these issues from the last user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4211800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 7, - "textRun": { - "content": "Goal 1:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 97, - "textRun": { - "content": " Test whether mapping root causes to strategies helps mentors employ effective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 147, - "textRun": { - "content": "If it helps, we can continue with this workflow.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 237, - "textRun": { - "content": "If not, we can evaluate why it doesn’t help and update the workflow to fix those problems\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "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" - } - } - }, - { - "startIndex": 237, - "endIndex": 238, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "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" - } - } - }, - { - "startIndex": 238, - "endIndex": 239, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 239, - "endIndex": 305, - "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" - } - } - }, - { - "startIndex": 239, - "endIndex": 246, - "textRun": { - "content": "Goal 2:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 246, - "endIndex": 305, - "textRun": { - "content": " See what obstacles mentors face in diagnosing root causes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "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" - } - } - }, - { - "startIndex": 305, - "endIndex": 306, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "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" - } - } - }, - { - "startIndex": 306, - "endIndex": 471, - "textRun": { - "content": "Understanding these obstacles would allow us to alter our workflow or design to make it easier for mentors to diagnose root causes, potentially by adding in context\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 471, - "endIndex": 472, - "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" - } - } - }, - { - "startIndex": 471, - "endIndex": 472, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 472, - "endIndex": 513, - "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" - } - } - }, - { - "startIndex": 472, - "endIndex": 512, - "textRun": { - "content": "User Testing Participants same as before", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 512, - "endIndex": 513, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.txqi0c27zz40": { - "listId": "kix.txqi0c27zz40", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ynplpxhcweip": { - "listId": "kix.ynplpxhcweip", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 84, - "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" - } - } - }, - { - "endIndex": 84, - "textRun": { - "content": "We didn’t get to observe how root cause analysis can be useful to a mentor because:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 153, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 153, - "textRun": { - "content": "1. Under-committed: too surface-level, didn’t have a deep root cause\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 301, - "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" - } - } - }, - { - "startIndex": 153, - "endIndex": 301, - "textRun": { - "content": "2. Diagnosis mostly through direct, in-person communication, very quick for diagnosis -> didn’t get to observe obstacles (for in-person and online)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 301, - "endIndex": 434, - "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" - } - } - }, - { - "startIndex": 301, - "endIndex": 434, - "textRun": { - "content": "3. Signals had too much noise (3 signals observed-1 surface level, 1 false alarm, 1 potentially interesting but didn’t get to test):\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 434, - "endIndex": 435, - "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" - } - } - }, - { - "startIndex": 434, - "endIndex": 435, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ], - "lists": { - "kix.ordpe99folbm": { - "listId": "kix.ordpe99folbm", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 254, - "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" - } - } - }, - { - "endIndex": 254, - "textRun": { - "content": "1. Choose problems related to conceptual understanding that mentors want to focus on during SIG, so that we can observe the influence of root cause analysis throughout the 30 min of SIG, instead of for just 5 minutes when we choose a peripheral problem\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 254, - "endIndex": 307, - "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" - } - } - }, - { - "startIndex": 254, - "endIndex": 307, - "textRun": { - "content": "E.g. misalignment in understanding of riskiest risk?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 307, - "endIndex": 412, - "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" - } - } - }, - { - "startIndex": 307, - "endIndex": 412, - "textRun": { - "content": "Are students updating the part of PRC that they said they will in the planning view of their sprint log?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 412, - "endIndex": 442, - "paragraphMarker": { - "style": { - "lineSpacing": 115, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 412, - "endIndex": 442, - "textRun": { - "content": "Student’s metacognitive goals\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 442, - "endIndex": 443, - "paragraphMarker": { - "style": { - "lineSpacing": 115, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 442, - "endIndex": 443, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 443, - "endIndex": 583, - "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" - } - } - }, - { - "startIndex": 443, - "endIndex": 583, - "textRun": { - "content": "2. Maybe try some online testing as well? Especially because SIG is so short and it makes sense to try to address some issues through slack\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 583, - "endIndex": 584, - "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" - } - } - }, - { - "startIndex": 583, - "endIndex": 584, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 584, - "endIndex": 687, - "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" - } - } - }, - { - "startIndex": 584, - "endIndex": 687, - "textRun": { - "content": "3. Need to minimize noise and uncertainty in detection so we can actually get to root cause analysis. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 687, - "endIndex": 794, - "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" - } - } - }, - { - "startIndex": 687, - "endIndex": 794, - "textRun": { - "content": "a. Make sure mentees are using the tools as they’re meant to do (no separate doc, no “I just forgot” etc.)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 794, - "endIndex": 861, - "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" - } - } - }, - { - "startIndex": 794, - "endIndex": 861, - "textRun": { - "content": "b. Do some manual filtering when needed to get rid of false alarms\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 861, - "endIndex": 878, - "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" - } - } - }, - { - "startIndex": 861, - "endIndex": 878, - "textRun": { - "content": "c. SIGNAL -> RC❌\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 878, - "endIndex": 897, - "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" - } - } - }, - { - "startIndex": 878, - "endIndex": 897, - "textRun": { - "content": " RC -> SIGNAL ✅\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 897, - "endIndex": 898, - "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" - } - } - }, - { - "startIndex": 897, - "endIndex": 898, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 898, - "endIndex": 1082, - "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" - } - } - }, - { - "startIndex": 898, - "endIndex": 1081, - "textRun": { - "content": "4. Information gap between us and other SIGs: don’t know what they’re focusing on rn, what they’re expecting to talk about during SIG -> mentors can take into account when they script", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1081, - "endIndex": 1082, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.e0w7hdxmufea": { - "listId": "kix.e0w7hdxmufea", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.gi4edlhja7vs": { - "listId": "kix.gi4edlhja7vs", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.i900jzkemoqh": { - "listId": "kix.i900jzkemoqh", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 16, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "1.", - "bulletStyle": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "Preparation (?)\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 114, - "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" - } - } - }, - { - "startIndex": 16, - "endIndex": 114, - "textRun": { - "content": "Ask mentors to explain the state of the project, what they’re expecting to talk about during SIG.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 114, - "endIndex": 186, - "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" - } - } - }, - { - "startIndex": 114, - "endIndex": 186, - "textRun": { - "content": "Ask mentees for a brief explanation of their progress and deliverables.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 186, - "endIndex": 196, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "2.", - "bulletStyle": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 186, - "endIndex": 196, - "textRun": { - "content": "Setup (?)\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 196, - "endIndex": 491, - "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" - } - } - }, - { - "startIndex": 196, - "endIndex": 215, - "textRun": { - "content": "Determine a couple ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 256, - "textRun": { - "content": "RCs related to conceptual understanding. ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 256, - "endIndex": 350, - "textRun": { - "content": "Read each team’s sprint logs, canvases, and slack channels to look for signals that points to ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 350, - "endIndex": 369, - "textRun": { - "content": "these specific RCs.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 369, - "endIndex": 491, - "textRun": { - "content": ". We will take the signal to three experienced mentors, and ask them to come up with a comprehensive list of root causes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 491, - "endIndex": 504, - "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" - } - } - }, - { - "startIndex": 491, - "endIndex": 504, - "textRun": { - "content": "+ strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 504, - "endIndex": 505, - "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" - } - } - }, - { - "startIndex": 504, - "endIndex": 505, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 505, - "endIndex": 517, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "3.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 505, - "endIndex": 517, - "textRun": { - "content": "Preparation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 517, - "endIndex": 610, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 517, - "endIndex": 610, - "textRun": { - "content": "Meet with mentor before SIG meeting to show him the signals, the root causes, and strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 610, - "endIndex": 681, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 610, - "endIndex": 681, - "textRun": { - "content": "mentor will think about how he’s gonna use this information during SIG\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 681, - "endIndex": 786, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.f2d3x4uv8p06", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 681, - "endIndex": 786, - "textRun": { - "content": "mentor will also examine some context information before SIG to help diagnose the problem if he wants to\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 786, - "endIndex": 787, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 36, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - } - } - }, - { - "startIndex": 786, - "endIndex": 787, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 787, - "endIndex": 798, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "4.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 787, - "endIndex": 798, - "textRun": { - "content": "During SIG\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 798, - "endIndex": 811, - "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" - } - } - }, - { - "startIndex": 798, - "endIndex": 811, - "textRun": { - "content": "mentor will:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 811, - "endIndex": 872, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.ixxpl7mibqvo", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 811, - "endIndex": 872, - "textRun": { - "content": "Discuss this with his mentees to finish diagnose the problem\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 872, - "endIndex": 966, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.ixxpl7mibqvo", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 872, - "endIndex": 966, - "textRun": { - "content": "Enact strategy that they have designed for that root cause (or whatever strategy he sees fit)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 966, - "endIndex": 967, - "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" - } - } - }, - { - "startIndex": 966, - "endIndex": 967, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 967, - "endIndex": 988, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.50iaokq8q7xd", - "glyph": "5.", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "fontSize": { - "magnitude": 8, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 967, - "endIndex": 988, - "textRun": { - "content": "Post-study Interview\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 988, - "endIndex": 1096, - "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" - } - } - }, - { - "startIndex": 988, - "endIndex": 1096, - "textRun": { - "content": "We will interview mentors and mentees about how this framework has influenced their mentoring interactions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.50iaokq8q7xd": { - "listId": "kix.50iaokq8q7xd", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.f2d3x4uv8p06": { - "listId": "kix.f2d3x4uv8p06", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.ixxpl7mibqvo": { - "listId": "kix.ixxpl7mibqvo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "RC design argument:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 113, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 113, - "textRun": { - "content": "-> quotes like “this framework of thinking helped me come up with more tailored strategies”,\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 113, - "endIndex": 269, - "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" - } - } - }, - { - "startIndex": 113, - "endIndex": 269, - "textRun": { - "content": " “I didn’t think of xxx as a potential root cause but the list of root causes helped me realize that it’s a possible reason why my mentees are struggling.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 269, - "endIndex": 294, - "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" - } - } - }, - { - "startIndex": 269, - "endIndex": 294, - "textRun": { - "content": "-> Observations such as:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 294, - "endIndex": 400, - "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" - } - } - }, - { - "startIndex": 294, - "endIndex": 400, - "textRun": { - "content": " having a planning period to reason and think about the root causes help mentors enact better strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 400, - "endIndex": 401, - "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" - } - } - }, - { - "startIndex": 400, - "endIndex": 401, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 401, - "endIndex": 402, - "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" - } - } - }, - { - "startIndex": 401, - "endIndex": 402, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.y5c8yds0bxz1": { - "listId": "kix.y5c8yds0bxz1", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "themeColor": "LIGHT1" - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4211800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 185, - "textRun": { - "content": "✅ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 91, - "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" - } - } - }, - { - "endIndex": 91, - "textRun": { - "content": "✅ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 91, - "endIndex": 92, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 214, - "textRun": { - "content": "❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 323, - "textRun": { - "content": "✅ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "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" - } - } - }, - { - "startIndex": 323, - "endIndex": 324, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "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" - } - } - }, - { - "startIndex": 324, - "endIndex": 475, - "textRun": { - "content": "✅ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "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" - } - } - }, - { - "startIndex": 475, - "endIndex": 476, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "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" - } - } - }, - { - "startIndex": 476, - "endIndex": 547, - "textRun": { - "content": "✅ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 205, - "textRun": { - "content": "✅ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "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" - } - } - }, - { - "startIndex": 205, - "endIndex": 206, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "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" - } - } - }, - { - "startIndex": 206, - "endIndex": 303, - "textRun": { - "content": "✅ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1707575, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1662900, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1489500, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2576450, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1707575, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g219b2f18f42_1_47", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_48", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 15, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 14, - "textRun": { - "content": "Grace & Jordan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 14, - "endIndex": 15, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_51", - "size": { - "width": { - "magnitude": 38400, - "unit": "EMU" - }, - "height": { - "magnitude": 51200, - "unit": "EMU" - } - }, - "transform": { - "shearX": 25.729, - "shearY": -38.5215, - "translateX": 1815650, - "translateY": 4254649.965, - "unit": "EMU" - }, - "image": { - "contentUrl": "https://lh7-us.googleusercontent.com/m9qWC4WPZhzXaFtcIuYDagpvv-ZVBuxW0RCZYthGohv0LSXEBbzn5HBHFCX_DwLP-Yuvb8gyBNOiP7DBdASnj37J2Tea0z-kgQpqq9XapplkJrW5sz30PDM1nGoGJTBcqOeOI-Dy4EnmQJVzu-5GXOBBBoMTeus2bMI=s2048", - "imageProperties": { - "cropProperties": { - "leftOffset": 0.1336741, - "topOffset": 0.30438057, - "bottomOffset": 0.1169492 - }, - "outline": { - "outlineFill": { - "solidFill": { - "color": { - "themeColor": "DARK2" - }, - "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" - } - } - } - }, - { - "objectId": "g219b2f18f42_1_52", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.6979, - "scaleY": 0.1847, - "translateX": 2756525, - "translateY": -49925, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "SIGNAL with RC related to conceptual understanding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1 - } - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 51, - "endIndex": 81, - "textRun": { - "content": "Filter out noise in detection\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1 - } - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "SHAPE_AUTOFIT", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_45:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_49", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_50", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_50" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g219b2f18f42_1_53", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_54", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 517800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 12, - "textRun": { - "content": "User classes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 12, - "endIndex": 13, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 71, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 70, - "textRun": { - "content": "Who are your users? At a high-level, what are they doing?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 71, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Users’ needs and goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 83, - "textRun": { - "content": "What are the high-level needs and goals for each user class?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 84, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Current solutions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 125, - "textRun": { - "content": "What existing solutions do users have to achieve their goals? (note: these need not be technical solutions)", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 83, - "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" - } - } - }, - { - "endIndex": 39, - "textRun": { - "content": "Users’ obstacles to meeting their goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 39, - "endIndex": 40, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 82, - "textRun": { - "content": "Why are users not able to meet their goal?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 83, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Problem statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 138, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 137, - "textRun": { - "content": "Briefly state the problems that your project will aim to solve (but not a solution yet!), using your previous responses", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 137, - "endIndex": 138, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 517800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2785400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 11, - "textRun": { - "content": "User class:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 11, - "endIndex": 13, - "textRun": { - "content": " \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 365, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 365, - "textRun": { - "content": "Mentors and mentees in networked work environments working to solve complex, ill-structured problems that have vaguely structured goals and constraints, and often multiple solutions. Working on these problems involves continually planning and re-planning around changing needs and constraints, often soliciting support from others in the organization.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 365, - "endIndex": 366, - "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" - } - } - }, - { - "startIndex": 365, - "endIndex": 366, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 366, - "endIndex": 389, - "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" - } - } - }, - { - "startIndex": 366, - "endIndex": 389, - "textRun": { - "content": "User Characteristics: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 389, - "endIndex": 586, - "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" - } - } - }, - { - "startIndex": 389, - "endIndex": 586, - "textRun": { - "content": "Mentors possess expertise in the organization’s area of work, various resources in the organization, effective work practices, as well as addressing problems that commonly arise in the workspace. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 44, - "textRun": { - "content": "Mentors want to utilize their expertise to:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 83, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 44, - "endIndex": 83, - "textRun": { - "content": "Know when their mentees are struggling\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 127, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 83, - "endIndex": 127, - "textRun": { - "content": "Understand why their mentees are struggling\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 213, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 127, - "endIndex": 213, - "textRun": { - "content": "Provide tailored strategy to help their mentees overcome what they’re struggling with\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 213, - "endIndex": 296, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.pybpe9m23two", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 213, - "endIndex": 296, - "textRun": { - "content": "Help them become better learners without spending an overwhelming amount of time. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "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" - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 297, - "endIndex": 512, - "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" - } - } - }, - { - "startIndex": 297, - "endIndex": 512, - "textRun": { - "content": "When tackling complex tasks, mentees often encounter problems that require support from others because they do not have the resources or skills to address the work needs themselves. When this happens, they want to:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 512, - "endIndex": 621, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 512, - "endIndex": 621, - "textRun": { - "content": "Utilize the resources in their work network such as venues, people, and tools to solve their problem at hand\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 621, - "endIndex": 777, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 621, - "endIndex": 777, - "textRun": { - "content": "Learn more effective learning, research, and metacognitive strategies so that they can be more capable of achieving their personal and professional goals. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 777, - "endIndex": 833, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.z71lbhkwuvo3", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 7, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 777, - "endIndex": 833, - "textRun": { - "content": "Do so in a way which is more sustainable and enjoyable.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "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" - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "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" - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.pybpe9m23two": { - "listId": "kix.pybpe9m23two", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.z71lbhkwuvo3": { - "listId": "kix.z71lbhkwuvo3", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 264, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "1.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 3, - "endIndex": 31, - "textRun": { - "content": "Online/offline communication", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 264, - "textRun": { - "content": ": mentor contacts mentees through professional messaging platforms such as Slack, email, or meet with mentees in person to discuss their struggles. Mentees can also contact mentors to ask questions and get help when they are stuck. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 264, - "endIndex": 265, - "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" - } - } - }, - { - "startIndex": 264, - "endIndex": 265, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 265, - "endIndex": 293, - "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" - } - } - }, - { - "startIndex": 265, - "endIndex": 267, - "textRun": { - "content": "2.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 267, - "endIndex": 268, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 268, - "endIndex": 274, - "textRun": { - "content": "Mentor", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 274, - "endIndex": 275, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 275, - "endIndex": 291, - "textRun": { - "content": "Manually Monitor", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 291, - "endIndex": 293, - "textRun": { - "content": ":\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 293, - "endIndex": 435, - "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" - } - } - }, - { - "startIndex": 293, - "endIndex": 435, - "textRun": { - "content": "With workspaces becoming increasingly digitized, mentor can manually check resources and notify students when they see ineffective strategies\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 435, - "endIndex": 436, - "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" - } - } - }, - { - "startIndex": 435, - "endIndex": 436, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 436, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 436, - "endIndex": 438, - "textRun": { - "content": "3.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 438, - "endIndex": 439, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 439, - "endIndex": 465, - "textRun": { - "content": "Workspace automation tools", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 465, - "endIndex": 467, - "textRun": { - "content": ":\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 586, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 586, - "textRun": { - "content": "Mentor can use workspace automation tools such as Slack and Zapier to detect work needs and facilitate work processes \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 586, - "endIndex": 587, - "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" - } - } - }, - { - "startIndex": 586, - "endIndex": 587, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 587, - "endIndex": 613, - "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" - } - } - }, - { - "startIndex": 587, - "endIndex": 589, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 0.6 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 589, - "endIndex": 590, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 590, - "endIndex": 613, - "textRun": { - "content": "Orchestration Scripts:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 613, - "endIndex": 728, - "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" - } - } - }, - { - "startIndex": 613, - "endIndex": 728, - "textRun": { - "content": "Mentors can use the OS language to write scripts that surface support strategies at appropriate times and settings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 728, - "endIndex": 729, - "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" - } - } - }, - { - "startIndex": 728, - "endIndex": 729, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 729, - "endIndex": 730, - "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" - } - } - }, - { - "startIndex": 729, - "endIndex": 730, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.j2f6lbesv3dp": { - "listId": "kix.j2f6lbesv3dp", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.lrf6l3cv5yu7": { - "listId": "kix.lrf6l3cv5yu7", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "1.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 27, - "textRun": { - "content": " Mentor Contact Mentee: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 157, - "textRun": { - "content": "Mentors doesn’t know when mentee is struggling unless they bring it up or notices it in the interactions they have with mentees. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 180, - "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" - } - } - }, - { - "startIndex": 157, - "endIndex": 180, - "textRun": { - "content": "Mentee contact Mentor:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 440, - "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" - } - } - }, - { - "startIndex": 180, - "endIndex": 440, - "textRun": { - "content": "Only allows mentees to get help in situations when they are able to self-identify the issue or or when their mentors are able to identify them in the interactions they have with mentees. This misses out on the issues that mentees aren't able to self-diagnose.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 440, - "endIndex": 441, - "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" - } - } - }, - { - "startIndex": 440, - "endIndex": 441, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 441, - "endIndex": 506, - "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" - } - } - }, - { - "startIndex": 441, - "endIndex": 443, - "textRun": { - "content": "2.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 443, - "endIndex": 506, - "textRun": { - "content": " Time-consuming and not scalable as organization grows in size\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 506, - "endIndex": 507, - "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" - } - } - }, - { - "startIndex": 506, - "endIndex": 507, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 507, - "endIndex": 702, - "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" - } - } - }, - { - "startIndex": 507, - "endIndex": 509, - "textRun": { - "content": "3.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 702, - "textRun": { - "content": " Deterministic philosophy of execution is unfit for ill-structured problems because work processes in practice are not easy to codify due to complexities and day-to-day uncertainties of work. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 702, - "endIndex": 1380, - "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" - } - } - }, - { - "startIndex": 702, - "endIndex": 874, - "textRun": { - "content": "Because mentors are often asked to help problem-solve on specific tasks, these tools embodies a workflow that goes directly from a specific task/problem to strategies. So, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 874, - "endIndex": 936, - "textRun": { - "content": "mentors tend to provide specific problem-solving strategies (c", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 936, - "endIndex": 955, - "textRun": { - "content": "ognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 955, - "endIndex": 968, - "textRun": { - "content": ") instead of ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 968, - "endIndex": 992, - "textRun": { - "content": "metacognitive strategies", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 992, - "endIndex": 1072, - "textRun": { - "content": " that ensure the problem is solved in ways that promote mentee’s personal growth", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1072, - "endIndex": 1380, - "textRun": { - "content": ". This is problematic because while the short-term goal of completing a specific task has been met, the underlying reason of why mentees were struggling with the task has been overlooked. In the long term, this underlying cause of struggling will likely cause many other problems for the mentor and mentees.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1380, - "endIndex": 1381, - "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" - } - } - }, - { - "startIndex": 1380, - "endIndex": 1381, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1381, - "endIndex": 1954, - "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" - } - } - }, - { - "startIndex": 1381, - "endIndex": 1383, - "textRun": { - "content": "4.", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 0.6 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1383, - "endIndex": 1384, - "textRun": { - "content": " ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1384, - "endIndex": 1405, - "textRun": { - "content": "Expression Challenge:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1405, - "endIndex": 1770, - "textRun": { - "content": " The way human understand things is very different from machine representations (OS language). It's time consuming and difficult for mentors to learn the OS language, especially for mentors with no prior programming experience. Not to mention many human concepts (e.g. metacognitive blockers) are extremely hard to express in machine representations. Mentors still ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1770, - "endIndex": 1897, - "textRun": { - "content": "lack the tools to translate their high level understanding of work strategies to machine-understandable code and low-level data", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 1897, - "endIndex": 1954, - "textRun": { - "content": " available through mentees' interaction with resources. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1954, - "endIndex": 1955, - "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" - } - } - }, - { - "startIndex": 1954, - "endIndex": 1955, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1955, - "endIndex": 2251, - "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" - } - } - }, - { - "startIndex": 1955, - "endIndex": 1961, - "textRun": { - "content": "Also, ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1961, - "endIndex": 2028, - "textRun": { - "content": "Mentors often find it difficult to put themselves in mentee’s shoes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 2028, - "endIndex": 2251, - "textRun": { - "content": " to understand mentee’s struggles because it’s hard for them to relate to mentee’s background, they might lack knowledge of mentee’s way of working, and they’re unaware that they possess expertise that mentees don’t have. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 5, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.7w4lrivrcuw2": { - "listId": "kix.7w4lrivrcuw2", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 877, - "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" - } - } - }, - { - "endIndex": 877, - "textRun": { - "content": "Mentors want to utilize their expertise to help mentees achieve personal growth while tackling complex tasks in a networked workspace by understanding when and why mentees are struggling and providing tailored strategies. Mentors currently use tools like online/in person communication, and workspace automation tools to support their mentoring practice. However, these tools are either time-consuming, not scalable, or promotes task-specific cognitive strategies that have limited long-term benefits for the mentees. While the OS language allows mentors to surface support strategies at appropriate times and settings, 1) it’s still hard for them to know why mentees are struggling because mentors often find it difficult to put themselves in mentee’s shoe, and 2) they lack the tools to translate their high level understanding of work strategies to machine representations.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.7w4lrivrcuw2": { - "listId": "kix.7w4lrivrcuw2", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2785400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1481050, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 53, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "✅/❌ Have you clearly distinguished the user classes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "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" - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 54, - "endIndex": 118, - "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" - } - } - }, - { - "startIndex": 54, - "endIndex": 118, - "textRun": { - "content": "✅/❌ Do you state what your users are doing for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 183, - "textRun": { - "content": "✅/❌ Do you state the major characteristics for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 184, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 184, - "endIndex": 237, - "textRun": { - "content": "✅/❌ Have you generated personas for each user class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 125, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 125, - "textRun": { - "content": "✅/❌ Are these goals things that your actual users want to do (and not things you think they should do)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 126, - "endIndex": 188, - "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" - } - } - }, - { - "startIndex": 126, - "endIndex": 188, - "textRun": { - "content": "✅/❌ Do you state why these goals are important to your users?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 188, - "endIndex": 189, - "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" - } - } - }, - { - "startIndex": 188, - "endIndex": 189, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 189, - "endIndex": 275, - "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" - } - } - }, - { - "startIndex": 189, - "endIndex": 275, - "textRun": { - "content": "✅/❌ Do you have evidence from your interviews or observations to support these goals?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "For each existing solution:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 122, - "textRun": { - "content": "✅/❌ Do you state how the current solution works, and how it is used to meet the users’ needs?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 217, - "textRun": { - "content": "✅/❌ Do you state what users think works well about the solution? What doesn’t work well? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 391, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 313, - "textRun": { - "content": "✅/❌ Do you state why is it bad that current solution doesn’t work at all or isn’t good enough? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 313, - "endIndex": 391, - "textRun": { - "content": "(hint: really try to empathize with your users to understand their struggles)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 98, - "textRun": { - "content": "✅/❌ Have you mapped out your user’s journey to understand their pain points?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 99, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 99, - "endIndex": 158, - "textRun": { - "content": "✅/❌ Do you understand why they are having these struggles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 158, - "endIndex": 159, - "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" - } - } - }, - { - "startIndex": 158, - "endIndex": 159, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 242, - "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" - } - } - }, - { - "startIndex": 159, - "endIndex": 242, - "textRun": { - "content": "✅/❌ Do you understand why these obstacles are problematic or painful for the user?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "For each problem statement:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 98, - "textRun": { - "content": "✅/❌ Does your problem statement address who the users/characters are?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 98, - "endIndex": 99, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 99, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 99, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Does your problem statement truly capture the core tension between the users’ needs and obstacles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 203, - "endIndex": 313, - "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" - } - } - }, - { - "startIndex": 203, - "endIndex": 313, - "textRun": { - "content": "✅/❌ Is your problem statement in the form, “User wants to do X, but can’t because Y, which is bad because Z”?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1481050, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g219b2f18f42_1_55", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 38, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "Mysore Template: Problem Statement {}", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g219b2f18f42_1_56", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "[Grace & Jordan]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 17, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g219b2f18f42_1_53:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g219b2f18f42_1_57", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g219b2f18f42_1_58", - "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": 29, - "paragraphMarker": { - "style": { - "indentStart": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "A is an obstacle (good job!)\n", - "style": {} - } - }, - { - "startIndex": 29, - "endIndex": 164, - "paragraphMarker": { - "style": { - "indentStart": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 29, - "endIndex": 82, - "textRun": { - "content": "I would rephrase b-3 to emphasize on the complexity, ", - "style": {} - } - }, - { - "startIndex": 82, - "endIndex": 103, - "textRun": { - "content": "which mentors/mentees", - "style": { - "underline": true - } - } - }, - { - "startIndex": 103, - "endIndex": 164, - "textRun": { - "content": " (especially mentees) do know have the bandwidth to process.\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g219b2f18f42_1_58" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_0", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.1776, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 46, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 46, - "textRun": { - "content": "Takeaways from User Testing \n", - "style": {} - } - }, - { - "startIndex": 46, - "endIndex": 76, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 46, - "endIndex": 75, - "textRun": { - "content": "SP’23 Root Cause test Week 4 ", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - }, - { - "startIndex": 75, - "endIndex": 76, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 76, - "endIndex": 93, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 76, - "endIndex": 93, - "textRun": { - "content": "Do all 6 slides!\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_4", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Mind Dump / “Off the top”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 127, - "textRun": { - "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 128, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 49, - "textRun": { - "content": "Restate your Problem Statement + Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 136, - "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" - } - } - }, - { - "startIndex": 49, - "endIndex": 135, - "textRun": { - "content": "What was your problem statement and design argument that you tested in this user test?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 135, - "endIndex": 136, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Testing Scenario + Measures", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 120, - "textRun": { - "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Individual Key Insights", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 93, - "textRun": { - "content": "As individuals, where were some insights you had from the user test? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Synthesize Key Insights as a Group\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "textRun": { - "content": "As a group, what were your key insights?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4266450, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 183, - "textRun": { - "content": "1. For under-committed, the mentor was able to diagnose the root cause very quickly with direct, in-person communication. (might be due to it’s a relatively straightforward problem)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 183, - "endIndex": 184, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 184, - "endIndex": 478, - "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" - } - } - }, - { - "startIndex": 184, - "endIndex": 478, - "textRun": { - "content": "2. The mentor enacted a very clear workflow going from the under-committed signal, to diagnosing the root cause (handwavy), and then to strategy (a mini session on the importance of sprint log as shared language that provides the mentor with a sense of their progress + how to use sprint log).\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 478, - "endIndex": 479, - "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" - } - } - }, - { - "startIndex": 478, - "endIndex": 479, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 479, - "endIndex": 747, - "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" - } - } - }, - { - "startIndex": 479, - "endIndex": 747, - "textRun": { - "content": "3. This process was peripheral but helpful. The signal we choose didn’t match his plan for the SIG meeting. It was not the most important thing he wanted to focus, but the he thought that “This talk about process was helpful to help me get a sense of their progress.”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 747, - "endIndex": 748, - "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" - } - } - }, - { - "startIndex": 747, - "endIndex": 748, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 748, - "endIndex": 946, - "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" - } - } - }, - { - "startIndex": 748, - "endIndex": 945, - "textRun": { - "content": "The effectiveness of script relies on mentor’s ability to come up with root causes -> research how we can help mentors come up with root causes -> if inexperienced mentors come up with root causes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 945, - "endIndex": 946, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5ri3mahafe48": { - "listId": "kix.5ri3mahafe48", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.i113f9cri0bo": { - "listId": "kix.i113f9cri0bo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.s9sznpijevks": { - "listId": "kix.s9sznpijevks", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "Restate the problem and design you set out to test with the design sprint you just completed.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 123, - "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" - } - } - }, - { - "endIndex": 123, - "textRun": { - "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 210, - "textRun": { - "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 210, - "endIndex": 216, - "textRun": { - "content": " Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 214, - "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" - } - } - }, - { - "endIndex": 214, - "textRun": { - "content": "This test leads us to think that the current model of scaffolding leads the mentors to arrive to root causes and strategies that are on point and perceived as helpful to the mentee (at least for simpler scenarios)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 375, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 375, - "textRun": { - "content": "Since this part of the process seems successful, we should consider shifting gears to focus on how the mentor can realize this script after scaffolding for it \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 375, - "endIndex": 376, - "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" - } - } - }, - { - "startIndex": 375, - "endIndex": 376, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 376, - "endIndex": 509, - "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" - } - } - }, - { - "startIndex": 376, - "endIndex": 509, - "textRun": { - "content": "Tools should be presented clearly to the user so that they understand what the scripting environment affords/can’t afford to measure\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "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" - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 510, - "endIndex": 511, - "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" - } - } - }, - { - "startIndex": 510, - "endIndex": 511, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Noise + false alarms\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 95, - "textRun": { - "content": "Numerical + field empty to detect problems with conceptual understanding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4266450, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Quick Takeaways from User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_9", - "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": 148, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "Look at some of the prompts in ", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 146, - "textRun": { - "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61", - "style": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "HYPERLINK" - } - }, - "link": { - "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61" - }, - "underline": true - } - } - }, - { - "startIndex": 146, - "endIndex": 148, - "textRun": { - "content": " \n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_10", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_11", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 6, - "tableRows": [ - { - "rowHeight": { - "magnitude": 784000, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 31, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "Restate your Problem Statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 31, - "endIndex": 97, - "textRun": { - "content": "What was your problem statement before going into your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 12, - "textRun": { - "content": "User classes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 12, - "endIndex": 13, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 69, - "textRun": { - "content": "How has your understanding of your user classes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Users’ needs and goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 95, - "textRun": { - "content": "How has your understanding of users’ high-level needs and goals changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Current solutions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 97, - "textRun": { - "content": "Did you learn more about existing solutions that users have, and how they work?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 139, - "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" - } - } - }, - { - "endIndex": 39, - "textRun": { - "content": "Users’ obstacles to meeting their goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 39, - "endIndex": 40, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 138, - "textRun": { - "content": "Did you learn more about why users are not able to meet their goal, with or without your solution?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Problem statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 142, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 141, - "textRun": { - "content": "How has your problem statement changed? What assumptions were correct/incorrect? What parts of the problem were reinforced?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 141, - "endIndex": 142, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 784000, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2544750, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2544750, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1483250, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 24, - "textRun": { - "content": "No checklist questions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 80, - "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" - } - } - }, - { - "endIndex": 80, - "textRun": { - "content": "✅/❌ Did you include any new user classes you have identified through your test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 146, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 146, - "textRun": { - "content": "✅/❌Did you include any new characteristics of your user classes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 232, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 232, - "textRun": { - "content": "✅/❌Did your findings reinforce any previously user classes or their characteristics?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 111, - "textRun": { - "content": "✅/❌ Did you include any new needs/goals (or update existing ones) based on your findings?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "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" - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 112, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 112, - "endIndex": 184, - "textRun": { - "content": "✅/❌ Did your findings reinforce any previously identified needs/goals? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "For each existing solution:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Have you discovered new solutions that users have attempted to meet their needs? If so, do you explain how these work?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 175, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 175, - "textRun": { - "content": "✅/❌ Have you discovered new obstacles to existing solutions, or your solution? If so, do you explain why users are having struggles with those solutions?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 175, - "endIndex": 176, - "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" - } - } - }, - { - "startIndex": 175, - "endIndex": 176, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 176, - "endIndex": 315, - "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" - } - } - }, - { - "startIndex": 176, - "endIndex": 315, - "textRun": { - "content": "✅/❌ Did your design uncover new obstacles that prevented users from reaching their goal? If so, did you explain why those obstacles exist?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "For each problem statement:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 104, - "textRun": { - "content": "✅/❌ Does your updated problem statement capture any new needs or obstacles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 105, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 105, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 185, - "textRun": { - "content": "✅/❌ Do you include a problem statement for any new user classes you discovered?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1483250, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 54, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "Mysore Template: Understanding Your Problem Statement", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_10:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_14", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_15", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_15" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_16", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_17", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 671900, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Restate your Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 97, - "textRun": { - "content": "What was your design argument that you were testing this user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Desired User Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 85, - "textRun": { - "content": "How has your understanding of the desired user outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Obstacles to user outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 80, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 80, - "textRun": { - "content": "How has your understanding of the obstacles changed? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 278, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 278, - "textRun": { - "content": "Was the main practical obstacle the same as the conceptual obstacle? In other words, is it some usability problem that is blocking progress, or is it the actual obstacle from your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Design Characteristic\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 92, - "textRun": { - "content": "In what ways were your design characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Argument for your design\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "textRun": { - "content": "What did you learn about the argument for how your characteristics can overcome the obstacles to reach user outcomes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 671900, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2850650, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 240, - "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" - } - } - }, - { - "endIndex": 2, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 2, - "endIndex": 240, - "textRun": { - "content": " This scripting environment would help mentors express their high-level understanding of work strategies because it hides the low-level OS code and provide high-level pre-built functions that are more intuitive for mentors to understand.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 240, - "endIndex": 241, - "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" - } - } - }, - { - "startIndex": 240, - "endIndex": 241, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 241, - "endIndex": 431, - "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" - } - } - }, - { - "startIndex": 241, - "endIndex": 243, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 243, - "endIndex": 431, - "textRun": { - "content": " The procedural scripting process would help alleviate the expression challenge by reducing errors in the script, standardizing a script structure, and demystifying the scripting process.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 431, - "endIndex": 432, - "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" - } - } - }, - { - "startIndex": 431, - "endIndex": 432, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 432, - "endIndex": 742, - "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" - } - } - }, - { - "startIndex": 432, - "endIndex": 434, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 434, - "endIndex": 742, - "textRun": { - "content": " By guiding mentor to scaffold and form hypotheses about potential root causes underlying the situation, our interface prompts mentors to gain a fuller and deeper understanding of the struggle their student is facing so that they can help mentees achieve better long-term growth through tailored strategies.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 742, - "endIndex": 743, - "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" - } - } - }, - { - "startIndex": 742, - "endIndex": 743, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 743, - "endIndex": 1002, - "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" - } - } - }, - { - "startIndex": 743, - "endIndex": 745, - "textRun": { - "content": "->", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 745, - "endIndex": 1001, - "textRun": { - "content": " By promoting context-awareness, our interface helps mentors understand the perspective of mentees by providing information of how the mentees are working, showing what might be lacking in their understandings and what otherwise might have been overlooked.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1001, - "endIndex": 1002, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2850650, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1289475, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Based on your user testing, did you have an updated description of what users want to be able to do?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 328, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 142, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 328, - "textRun": { - "content": " want users to do? In other words, did your users use your previous design in an unanticipated way that was not desirable, or helped you understand what outcomes users don’t care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 72, - "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" - } - } - }, - { - "endIndex": 72, - "textRun": { - "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 73, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 73, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Did you include any new understanding about why designs fail?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "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" - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 140, - "endIndex": 326, - "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" - } - } - }, - { - "startIndex": 140, - "endIndex": 311, - "textRun": { - "content": "✅/❌ Does your understanding of obstacles point to what kinds of designs may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 311, - "endIndex": 314, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 314, - "endIndex": 326, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 97, - "textRun": { - "content": "✅/❌ Did your characteristics support users in achieving the high-level outcomes they care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 74, - "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" - } - } - }, - { - "endIndex": 74, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 74, - "endIndex": 75, - "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" - } - } - }, - { - "startIndex": 74, - "endIndex": 75, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 75, - "endIndex": 148, - "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" - } - } - }, - { - "startIndex": 75, - "endIndex": 148, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "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" - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1289475, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_18", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 52, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Mysore Template: Understanding Your Design Argument", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 52, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_19", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_16:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_20", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_21", - "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": 143, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Check the updated prompts ", - "style": {} - } - }, - { - "startIndex": 26, - "endIndex": 141, - "textRun": { - "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73", - "style": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "HYPERLINK" - } - }, - "link": { - "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73" - }, - "underline": true - } - } - }, - { - "startIndex": 141, - "endIndex": 143, - "textRun": { - "content": " \n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_21" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_22", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_23", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 570175, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Restate your Interface Model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 139, - "textRun": { - "content": "What was the interface model you used to implement your design argument that you were testing this user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Desired Interface Outcomes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 96, - "textRun": { - "content": "How has your understanding of the desired interface outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 96, - "endIndex": 97, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Obstacle to Interface Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 30, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 30, - "endIndex": 83, - "textRun": { - "content": "How has your understanding of the obstacles changed? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 84, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Interface Feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 91, - "textRun": { - "content": "In what ways were your interface characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Argument for your interface feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 164, - "textRun": { - "content": "What did you learn about the argument for how your interface feature can overcome the obstacles to reach the interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 570175, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2938725, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2938725, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1303100, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 146, - "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" - } - } - }, - { - "endIndex": 146, - "textRun": { - "content": "✅/❌ Based on your user testing, do you have an updated description of what your interface needs to do in order to implement your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 359, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 180, - "textRun": { - "content": "✅/❌ Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 183, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 359, - "textRun": { - "content": " want your interface to allow? In other words, did your users use your previous interface in an unanticipated way that was not desirable to instantiating your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 72, - "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" - } - } - }, - { - "endIndex": 72, - "textRun": { - "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 73, - "endIndex": 150, - "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" - } - } - }, - { - "startIndex": 73, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Did you include any new understanding about why interface features fail?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 348, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 333, - "textRun": { - "content": "✅/❌ Does your understanding of obstacles point to what kinds of interface features may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 333, - "endIndex": 336, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 336, - "endIndex": 348, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 74, - "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" - } - } - }, - { - "endIndex": 74, - "textRun": { - "content": "✅/❌ Did your interface feature realize your design argument as intended? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 84, - "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" - } - } - }, - { - "endIndex": 84, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the interface argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 168, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the interface argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 169, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 169, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1303100, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_24", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 52, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Mysore Template: Understanding Your Interface Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 52, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_25", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_22:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_26", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_27", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_27" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_28", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_29", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 514350, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Restate your System Model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 96, - "textRun": { - "content": "What was the system model you used to implement your interface model?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Desired System Outcomes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 90, - "textRun": { - "content": "How has your understanding of the desired system outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Obstacle to System Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 80, - "textRun": { - "content": "How has your understanding of the obstacles changed? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "System Methods or Techniques\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 99, - "textRun": { - "content": "In what ways were your system characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Argument for your system method/technique\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 158, - "textRun": { - "content": "What did you learn about the argument for how your approach can overcome the obstacles to reach the system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 514350, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2967625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2967625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1298850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 142, - "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" - } - } - }, - { - "endIndex": 142, - "textRun": { - "content": "✅/❌Based on your user testing, do you have an updated description of what your system needs to do in order to implement your interface model?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 143, - "endIndex": 290, - "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" - } - } - }, - { - "startIndex": 143, - "endIndex": 175, - "textRun": { - "content": "✅/❌Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 175, - "endIndex": 178, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 178, - "endIndex": 290, - "textRun": { - "content": " want your system model to allow? In other words, did your users attempt to use your system in unintended ways?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 71, - "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" - } - } - }, - { - "endIndex": 71, - "textRun": { - "content": "✅/❌Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 71, - "endIndex": 72, - "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" - } - } - }, - { - "startIndex": 71, - "endIndex": 72, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 157, - "textRun": { - "content": "✅/❌Did you include any new understanding about why your system implementation fails?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 157, - "endIndex": 158, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 158, - "endIndex": 358, - "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" - } - } - }, - { - "startIndex": 158, - "endIndex": 343, - "textRun": { - "content": "✅/❌Does your understanding of obstacles point to what kinds of system implementations may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 343, - "endIndex": 346, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 346, - "endIndex": 358, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 118, - "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" - } - } - }, - { - "endIndex": 118, - "textRun": { - "content": "✅/❌Did your system model (and associated implementation methods/techniques) realize your interface model as intended?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 81, - "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" - } - } - }, - { - "endIndex": 81, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the system argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 162, - "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" - } - } - }, - { - "startIndex": 82, - "endIndex": 162, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the system argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 162, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 162, - "endIndex": 163, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1298850, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_30", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Understanding Your System Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_31", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_28:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_32", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_33", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_33" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_34", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_35", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 121, - "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" - } - } - }, - { - "endIndex": 121, - "textRun": { - "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "textRun": { - "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "textRun": { - "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "textRun": { - "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "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" - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g22f97ba0f5f_0_36", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g22f97ba0f5f_0_37", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g22f97ba0f5f_0_34:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g22f97ba0f5f_0_38", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g22f97ba0f5f_0_39", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g22f97ba0f5f_0_39" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_67", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_68", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 43, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 43, - "textRun": { - "content": "Test #1 & 2\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_67:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_69", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_70", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_70" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_71", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_72", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 65, - "textRun": { - "content": "Who will you test your prototype with? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2554400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 255, - "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" - } - } - }, - { - "endIndex": 255, - "textRun": { - "content": "We are trying to test if the blocks we have will actually enable the user to script for the scenario we have in mind. Are the blocks understandable? Will the user be able to construct both a detector and a strategy block to act on the situation detected?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 255, - "endIndex": 256, - "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" - } - } - }, - { - "startIndex": 255, - "endIndex": 256, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 256, - "endIndex": 266, - "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" - } - } - }, - { - "startIndex": 256, - "endIndex": 266, - "textRun": { - "content": "Scenario:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 266, - "endIndex": 310, - "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" - } - } - }, - { - "startIndex": 266, - "endIndex": 310, - "textRun": { - "content": "Detecting when a student is overcommitting \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "Mentors in DTR. Specifically, we will pair with a mentor during PR and test the current interface with them\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 40, - "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" - } - } - }, - { - "endIndex": 40, - "textRun": { - "content": "1- We will give the mentor this prompt:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 40, - "endIndex": 172, - "textRun": { - "content": "“Write a script that will enable you to detect when a student is overcommitting in a sprint and provides useful strategy (or more)”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 172, - "endIndex": 173, - "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" - } - } - }, - { - "startIndex": 172, - "endIndex": 173, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 173, - "endIndex": 174, - "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" - } - } - }, - { - "startIndex": 173, - "endIndex": 174, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 174, - "endIndex": 316, - "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" - } - } - }, - { - "startIndex": 174, - "endIndex": 316, - "textRun": { - "content": "2- We will observe as the user navigates the tool, paying extra attention to how they find the blocks and what meaning they make out of them \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 316, - "endIndex": 317, - "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" - } - } - }, - { - "startIndex": 316, - "endIndex": 317, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 317, - "endIndex": 444, - "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" - } - } - }, - { - "startIndex": 317, - "endIndex": 444, - "textRun": { - "content": "3- For this test, we have specific blocks designed that we think they user should use to script for this scenario (happy path)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 444, - "endIndex": 445, - "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" - } - } - }, - { - "startIndex": 444, - "endIndex": 445, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 445, - "endIndex": 466, - "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" - } - } - }, - { - "startIndex": 445, - "endIndex": 466, - "textRun": { - "content": "Post-test questions:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 466, - "endIndex": 551, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "1)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 466, - "endIndex": 551, - "textRun": { - "content": "Can you walk me through the logic you have? How do you think this is going to work? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 551, - "endIndex": 612, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "2)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 551, - "endIndex": 612, - "textRun": { - "content": "Were you able to find the blocks you needed? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 612, - "endIndex": 678, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "3)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 612, - "endIndex": 678, - "textRun": { - "content": "Were you able to understand what each block does? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 678, - "endIndex": 833, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "4)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 678, - "endIndex": 833, - "textRun": { - "content": "Why did you choose those specific blocks in the “if statement block”? Do you think this would succeed to capture the situation every time? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "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" - } - } - }, - { - "startIndex": 833, - "endIndex": 834, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "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" - } - } - }, - { - "startIndex": 834, - "endIndex": 835, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.qle4dnaitz2w": { - "listId": "kix.qle4dnaitz2w", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "We expect to learn: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 112, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 112, - "textRun": { - "content": "- How does the user get to deciding on what blocks they need to bring this script to life?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 112, - "endIndex": 113, - "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" - } - } - }, - { - "startIndex": 112, - "endIndex": 113, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 113, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 113, - "endIndex": 151, - "textRun": { - "content": "- Can they find the blocks they need?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 152, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 152, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 152, - "endIndex": 196, - "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" - } - } - }, - { - "startIndex": 152, - "endIndex": 196, - "textRun": { - "content": "- Do they understand what each block does? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 196, - "endIndex": 197, - "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" - } - } - }, - { - "startIndex": 196, - "endIndex": 197, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 197, - "endIndex": 273, - "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" - } - } - }, - { - "startIndex": 197, - "endIndex": 273, - "textRun": { - "content": "- Do they use each block as intended? If not, why? How else do they use it?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2554400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 186, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 186, - "textRun": { - "content": "✅/❌ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 69, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "✅/❌ Do you include who the users are, and how you will recruit them?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 150, - "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" - } - } - }, - { - "startIndex": 70, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Do you include how you will communicate with your users during your study? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 240, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 240, - "textRun": { - "content": "✅/❌ Do you consider any access issues that may prevent you from running your user tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 93, - "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" - } - } - }, - { - "endIndex": 93, - "textRun": { - "content": "✅/❌ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 218, - "textRun": { - "content": "✅/❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 219, - "endIndex": 328, - "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" - } - } - }, - { - "startIndex": 219, - "endIndex": 328, - "textRun": { - "content": "✅/❌ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 328, - "endIndex": 329, - "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" - } - } - }, - { - "startIndex": 328, - "endIndex": 329, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 329, - "endIndex": 481, - "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" - } - } - }, - { - "startIndex": 329, - "endIndex": 481, - "textRun": { - "content": "✅/❌ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 481, - "endIndex": 482, - "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" - } - } - }, - { - "startIndex": 481, - "endIndex": 482, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 482, - "endIndex": 554, - "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" - } - } - }, - { - "startIndex": 482, - "endIndex": 554, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅/❌ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 207, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 207, - "textRun": { - "content": "✅/❌ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "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" - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 208, - "endIndex": 307, - "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" - } - } - }, - { - "startIndex": 208, - "endIndex": 307, - "textRun": { - "content": "✅/❌ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_73", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_74", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_71:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_75", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_76", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_76" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g215e1dfdce3_0_0", - "pageElements": [ - { - "objectId": "g215e1dfdce3_0_1", - "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": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 31, - "textRun": { - "content": "Study Design \n", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 66, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 31, - "endIndex": 66, - "textRun": { - "content": "Final W’23 test (complex scenario)\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 28, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g215e1dfdce3_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g215e1dfdce3_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g215e1dfdce3_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g215e1dfdce3_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g215e1dfdce3_0_4", - "pageElements": [ - { - "objectId": "g215e1dfdce3_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "Goals of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 165, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 164, - "textRun": { - "content": "What are you specifically trying to test in your user tests? In what ways would the learnings affect your understanding of the design problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 164, - "endIndex": 165, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 65, - "textRun": { - "content": "Who will you test your prototype with? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 145, - "textRun": { - "content": "What will you ask your users to do? How would you know that the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "High-Level Expected Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 132, - "textRun": { - "content": "At a high-level, what did you expect to learn from your user tests (e.g., major insights/pain points)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2554400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 115, - "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" - } - } - }, - { - "endIndex": 115, - "textRun": { - "content": "We have modified the scaffolding prompts and scripting workspace to address the following abstraction challenges: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 115, - "endIndex": 159, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.39ir17xo6jt1", - "glyph": "●", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 115, - "endIndex": 159, - "textRun": { - "content": "Under-scoped on root cause (Mix-initiative)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 159, - "endIndex": 193, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.39ir17xo6jt1", - "glyph": "●", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 159, - "endIndex": 193, - "textRun": { - "content": "Inaccuracy in encoding detection \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 193, - "endIndex": 258, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.39ir17xo6jt1", - "glyph": "●", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 193, - "endIndex": 258, - "textRun": { - "content": "Under-scoped on strategies (lack of personalization, onboarding)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 498, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 498, - "textRun": { - "content": "We are trying to test if the modified interface will help the user brainstorm root causes of a “complex” scenario, come up with a way to detect the situation using the blocks, and identify strategies that map to the root causes identified\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 498, - "endIndex": 499, - "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" - } - } - }, - { - "startIndex": 498, - "endIndex": 499, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 499, - "endIndex": 564, - "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" - } - } - }, - { - "startIndex": 499, - "endIndex": 564, - "textRun": { - "content": "This will help us verify our design argument and interface model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 564, - "endIndex": 565, - "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" - } - } - }, - { - "startIndex": 564, - "endIndex": 565, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 565, - "endIndex": 808, - "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" - } - } - }, - { - "startIndex": 565, - "endIndex": 808, - "textRun": { - "content": "A Complex scenario: has more than 1 reason why it could be happening, therefore the detector should have multiple conditions and there should be at least 2 strategies to address it. Also resource suggested should differ for different students\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 808, - "endIndex": 809, - "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" - } - } - }, - { - "startIndex": 808, - "endIndex": 809, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.39ir17xo6jt1": { - "listId": "kix.39ir17xo6jt1", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 81, - "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" - } - } - }, - { - "endIndex": 81, - "textRun": { - "content": "One of the mentors in DTR (ideally a mentor with less exposure to the interface)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 232, - "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" - } - } - }, - { - "startIndex": 82, - "endIndex": 232, - "textRun": { - "content": "We will start contacting the mentor early on in the week (by Monday max) with the hope to schedule a test later in the week (before studio on Friday)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 232, - "endIndex": 233, - "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" - } - } - }, - { - "startIndex": 232, - "endIndex": 233, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 233, - "endIndex": 326, - "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" - } - } - }, - { - "startIndex": 233, - "endIndex": 326, - "textRun": { - "content": "Contingency plan (depending on how fast the building is going): we test early on finals week\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "We will give the mentor this prompt:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 295, - "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" - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "“", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 38, - "endIndex": 159, - "textRun": { - "content": "For projects with multiple team members, you want your students to develop skills across Design, Technology, and Research", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "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": 159, - "endIndex": 293, - "textRun": { - "content": ". Write a script to identify and address the situation when there is an imbalance in the distribution of D-T-R work among the students", - "style": { - "backgroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - } - }, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "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": 293, - "endIndex": 295, - "textRun": { - "content": "”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 295, - "endIndex": 296, - "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" - } - } - }, - { - "startIndex": 295, - "endIndex": 296, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "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" - } - } - }, - { - "startIndex": 296, - "endIndex": 297, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 297, - "endIndex": 492, - "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" - } - } - }, - { - "startIndex": 297, - "endIndex": 492, - "textRun": { - "content": "2- We will observe as the user navigates the tool, paying to what worked well and what didn’t work well as they go through the scaffolding (identifying root causes and strategies) and scripting \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 492, - "endIndex": 493, - "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" - } - } - }, - { - "startIndex": 492, - "endIndex": 493, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 493, - "endIndex": 620, - "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" - } - } - }, - { - "startIndex": 493, - "endIndex": 620, - "textRun": { - "content": "3- For this test, we have specific blocks designed that we think they user should use to script for this scenario (happy path)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 620, - "endIndex": 621, - "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" - } - } - }, - { - "startIndex": 620, - "endIndex": 621, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 621, - "endIndex": 642, - "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" - } - } - }, - { - "startIndex": 621, - "endIndex": 642, - "textRun": { - "content": "Post-test questions:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 642, - "endIndex": 799, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "1)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 642, - "endIndex": 799, - "textRun": { - "content": "Did the scaffolding give you a better idea of how to write the script? Were you able to map out the root causes and the strategies in the script you wrote?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 799, - "endIndex": 887, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "2)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 799, - "endIndex": 887, - "textRun": { - "content": "Can you walk me through the logic you have? How do you think this is going to execute? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 887, - "endIndex": 929, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "3)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 887, - "endIndex": 929, - "textRun": { - "content": "What worked well for you in this process?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 929, - "endIndex": 968, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "4)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 929, - "endIndex": 968, - "textRun": { - "content": "What didn’t work well? Any confusions?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 968, - "endIndex": 1029, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "5)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 968, - "endIndex": 1029, - "textRun": { - "content": "Were you able to find the blocks you needed? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1029, - "endIndex": 1095, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 11.25, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 11.25, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.qle4dnaitz2w", - "glyph": "6)", - "bulletStyle": { - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1029, - "endIndex": 1095, - "textRun": { - "content": "Were you able to understand what each block does? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1095, - "endIndex": 1096, - "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" - } - } - }, - { - "startIndex": 1095, - "endIndex": 1096, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1096, - "endIndex": 1097, - "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" - } - } - }, - { - "startIndex": 1096, - "endIndex": 1097, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1097, - "endIndex": 1098, - "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" - } - } - }, - { - "startIndex": 1097, - "endIndex": 1098, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.qle4dnaitz2w": { - "listId": "kix.qle4dnaitz2w", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "We expect to learn: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 252, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 252, - "textRun": { - "content": "- Is the user able to identify root causes and map them to strategies using the scaffolding interface they have? Were they able to identify that different students would struggle with different things/need different kinds of help?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "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" - } - } - }, - { - "startIndex": 252, - "endIndex": 253, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 357, - "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" - } - } - }, - { - "startIndex": 253, - "endIndex": 357, - "textRun": { - "content": "- Are they able to express what they wrote about in the scaffolding steps using blocks? Why or why not?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 357, - "endIndex": 358, - "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" - } - } - }, - { - "startIndex": 357, - "endIndex": 358, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 358, - "endIndex": 449, - "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" - } - } - }, - { - "startIndex": 358, - "endIndex": 449, - "textRun": { - "content": "- How does the user get to deciding on what blocks they need to bring this script to life?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 449, - "endIndex": 450, - "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" - } - } - }, - { - "startIndex": 449, - "endIndex": 450, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 450, - "endIndex": 488, - "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" - } - } - }, - { - "startIndex": 450, - "endIndex": 488, - "textRun": { - "content": "- Can they find the blocks they need?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 488, - "endIndex": 489, - "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" - } - } - }, - { - "startIndex": 488, - "endIndex": 489, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 489, - "endIndex": 533, - "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" - } - } - }, - { - "startIndex": 489, - "endIndex": 533, - "textRun": { - "content": "- Do they understand what each block does? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 533, - "endIndex": 534, - "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" - } - } - }, - { - "startIndex": 533, - "endIndex": 534, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 534, - "endIndex": 610, - "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" - } - } - }, - { - "startIndex": 534, - "endIndex": 610, - "textRun": { - "content": "- Do they use each block as intended? If not, why? How else do they use it?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 610, - "endIndex": 611, - "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" - } - } - }, - { - "startIndex": 610, - "endIndex": 611, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 611, - "endIndex": 612, - "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" - } - } - }, - { - "startIndex": 611, - "endIndex": 612, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 612, - "endIndex": 633, - "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" - } - } - }, - { - "startIndex": 612, - "endIndex": 633, - "textRun": { - "content": "Potential measures: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 633, - "endIndex": 634, - "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" - } - } - }, - { - "startIndex": 633, - "endIndex": 634, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 634, - "endIndex": 739, - "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" - } - } - }, - { - "startIndex": 634, - "endIndex": 739, - "textRun": { - "content": "Number of blocks the user misused → used in a wrong way/a way that wouldn’t yield their expected outcome\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 739, - "endIndex": 740, - "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" - } - } - }, - { - "startIndex": 739, - "endIndex": 740, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 740, - "endIndex": 786, - "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" - } - } - }, - { - "startIndex": 740, - "endIndex": 786, - "textRun": { - "content": "Number of root causes identified → at least 2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 786, - "endIndex": 787, - "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" - } - } - }, - { - "startIndex": 786, - "endIndex": 787, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 787, - "endIndex": 821, - "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" - } - } - }, - { - "startIndex": 787, - "endIndex": 821, - "textRun": { - "content": "Number of strategies → at least 2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 821, - "endIndex": 822, - "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" - } - } - }, - { - "startIndex": 821, - "endIndex": 822, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 822, - "endIndex": 948, - "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" - } - } - }, - { - "startIndex": 822, - "endIndex": 948, - "textRun": { - "content": "Compare the script they built with the script we built (and know works). How much did they get right? What parts would break?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 948, - "endIndex": 949, - "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" - } - } - }, - { - "startIndex": 948, - "endIndex": 949, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 949, - "endIndex": 1033, - "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" - } - } - }, - { - "startIndex": 949, - "endIndex": 1033, - "textRun": { - "content": "[Not that important] how long did it take the user to go through the whole process?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2554400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 86, - "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" - } - } - }, - { - "endIndex": 86, - "textRun": { - "content": "✅ Does what you want to learn teach you about how and why a design argument may work?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 87, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 87, - "endIndex": 186, - "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" - } - } - }, - { - "startIndex": 87, - "endIndex": 186, - "textRun": { - "content": "✅/❌ Do you describe the specific features of your prototype that you are planning to test and why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 69, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "✅/❌ Do you include who the users are, and how you will recruit them?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 70, - "endIndex": 150, - "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" - } - } - }, - { - "startIndex": 70, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Do you include how you will communicate with your users during your study? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 240, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 240, - "textRun": { - "content": "✅/❌ Do you consider any access issues that may prevent you from running your user tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 93, - "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" - } - } - }, - { - "endIndex": 93, - "textRun": { - "content": "✅/❌ Do you include the high-level tasks users will do, and how they will use your prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 218, - "textRun": { - "content": "✅/❌ Do you include the circumstances that you will test your prototype in (i.e., simulated scenario; actual practice; etc)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "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" - } - } - }, - { - "startIndex": 218, - "endIndex": 219, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 219, - "endIndex": 328, - "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" - } - } - }, - { - "startIndex": 219, - "endIndex": 328, - "textRun": { - "content": "✅/❌ Do you include what data you will collect, and why that will inform if your design argument is working? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 328, - "endIndex": 329, - "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" - } - } - }, - { - "startIndex": 328, - "endIndex": 329, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 329, - "endIndex": 481, - "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" - } - } - }, - { - "startIndex": 329, - "endIndex": 481, - "textRun": { - "content": "✅/❌ Will you be able to observe that people have reached the desired outcome of your design, and how your prototype will demonstrate how this happened?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 481, - "endIndex": 482, - "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" - } - } - }, - { - "startIndex": 481, - "endIndex": 482, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 482, - "endIndex": 554, - "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" - } - } - }, - { - "startIndex": 482, - "endIndex": 554, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 106, - "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" - } - } - }, - { - "endIndex": 106, - "textRun": { - "content": "✅/❌ Do your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 107, - "endIndex": 207, - "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" - } - } - }, - { - "startIndex": 107, - "endIndex": 207, - "textRun": { - "content": "✅/❌ Do you include implications for how your problem statement may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "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" - } - } - }, - { - "startIndex": 207, - "endIndex": 208, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 208, - "endIndex": 307, - "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" - } - } - }, - { - "startIndex": 208, - "endIndex": 307, - "textRun": { - "content": "✅/❌ Do you include implications for how your design arguments may change based on these findings? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g215e1dfdce3_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 34, - "textRun": { - "content": "Mysore Template: User Testing Plan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g215e1dfdce3_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 14, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 13, - "textRun": { - "content": "Grace & Rawan", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 14, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g215e1dfdce3_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g215e1dfdce3_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g215e1dfdce3_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g215e1dfdce3_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g10e508e5387_0_11", - "pageElements": [ - { - "objectId": "g10e508e5387_0_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.1776, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 59, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 59, - "textRun": { - "content": "Takeaways from User Testing #1(with Gobi)\n", - "style": {} - } - }, - { - "startIndex": 59, - "endIndex": 76, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 59, - "endIndex": 76, - "textRun": { - "content": "Do all 6 slides!\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g10e508e5387_0_11:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g10e508e5387_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g10e508e5387_0_14", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g10e508e5387_0_14" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_0", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Mind Dump / “Off the top”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 127, - "textRun": { - "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 128, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 49, - "textRun": { - "content": "Restate your Problem Statement + Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 136, - "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" - } - } - }, - { - "startIndex": 49, - "endIndex": 135, - "textRun": { - "content": "What was your problem statement and design argument that you tested in this user test?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 135, - "endIndex": 136, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Testing Scenario + Measures", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 120, - "textRun": { - "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Individual Key Insights", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 93, - "textRun": { - "content": "As individuals, where were some insights you had from the user test? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Synthesize Key Insights as a Group\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "textRun": { - "content": "As a group, what were your key insights?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4266450, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 1, - "endIndex": 154, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 1, - "endIndex": 154, - "textRun": { - "content": "Most of the detection tools that the mentor came up with to detect specific root causes were based off of substring matching and detecting certain words\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 154, - "endIndex": 315, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 154, - "endIndex": 315, - "textRun": { - "content": "We didn’t provide the list of tools for detection, so the user came up with detection signals that are out of scope → not detectable by our current system model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 315, - "endIndex": 485, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 315, - "endIndex": 485, - "textRun": { - "content": "When we interviewed the mentee, they said that the cause for the problem was the first root cause that the mentor identified → Do we need to overcomplicate this process?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 485, - "endIndex": 704, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 485, - "endIndex": 704, - "textRun": { - "content": "The strategies that the student mentioned were (1) the mentor should check in regularly and give feedback to validate their thinking and (2) ask them to come up with risks individually before SIG (in the case of teams)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 704, - "endIndex": 758, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 9, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 6.75, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.5ri3mahafe48", - "glyph": "-", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 704, - "endIndex": 758, - "textRun": { - "content": "The strategies the mentor came up with were on point \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 758, - "endIndex": 759, - "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" - } - } - }, - { - "startIndex": 758, - "endIndex": 759, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 759, - "endIndex": 760, - "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" - } - } - }, - { - "startIndex": 759, - "endIndex": 760, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5ri3mahafe48": { - "listId": "kix.5ri3mahafe48", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.i113f9cri0bo": { - "listId": "kix.i113f9cri0bo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.s9sznpijevks": { - "listId": "kix.s9sznpijevks", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "Restate the problem and design you set out to test with the design sprint you just completed.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 123, - "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" - } - } - }, - { - "endIndex": 123, - "textRun": { - "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 210, - "textRun": { - "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 210, - "endIndex": 216, - "textRun": { - "content": " Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 214, - "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" - } - } - }, - { - "endIndex": 214, - "textRun": { - "content": "This test leads us to think that the current model of scaffolding leads the mentors to arrive to root causes and strategies that are on point and perceived as helpful to the mentee (at least for simpler scenarios)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 375, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 375, - "textRun": { - "content": "Since this part of the process seems successful, we should consider shifting gears to focus on how the mentor can realize this script after scaffolding for it \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 375, - "endIndex": 376, - "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" - } - } - }, - { - "startIndex": 375, - "endIndex": 376, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 376, - "endIndex": 509, - "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" - } - } - }, - { - "startIndex": 376, - "endIndex": 509, - "textRun": { - "content": "Tools should be presented clearly to the user so that they understand what the scripting environment affords/can’t afford to measure\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "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" - } - } - }, - { - "startIndex": 509, - "endIndex": 510, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 510, - "endIndex": 511, - "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" - } - } - }, - { - "startIndex": 510, - "endIndex": 511, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "Synthesize a list of 4-5 key insights across your team.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4266450, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2117e6dac59_1_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Quick Takeaways from User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2117e6dac59_1_3", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_4", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_5", - "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": 148, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "Look at some of the prompts in ", - "style": {} - } - }, - { - "startIndex": 31, - "endIndex": 146, - "textRun": { - "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61", - "style": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "HYPERLINK" - } - }, - "link": { - "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_61" - }, - "underline": true - } - } - }, - { - "startIndex": 146, - "endIndex": 148, - "textRun": { - "content": " \n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_5" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_83", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_84", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 6, - "tableRows": [ - { - "rowHeight": { - "magnitude": 784000, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 31, - "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" - } - } - }, - { - "endIndex": 31, - "textRun": { - "content": "Restate your Problem Statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 31, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 31, - "endIndex": 97, - "textRun": { - "content": "What was your problem statement before going into your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 13, - "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" - } - } - }, - { - "endIndex": 12, - "textRun": { - "content": "User classes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 12, - "endIndex": 13, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 13, - "endIndex": 70, - "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" - } - } - }, - { - "startIndex": 13, - "endIndex": 69, - "textRun": { - "content": "How has your understanding of your user classes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Users’ needs and goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 23, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 95, - "textRun": { - "content": "How has your understanding of users’ high-level needs and goals changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Current solutions\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 97, - "textRun": { - "content": "Did you learn more about existing solutions that users have, and how they work?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 139, - "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" - } - } - }, - { - "endIndex": 39, - "textRun": { - "content": "Users’ obstacles to meeting their goals", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 39, - "endIndex": 40, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 138, - "textRun": { - "content": "Did you learn more about why users are not able to meet their goal, with or without your solution?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Problem statement\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 142, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 141, - "textRun": { - "content": "How has your problem statement changed? What assumptions were correct/incorrect? What parts of the problem were reinforced?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 141, - "endIndex": 142, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 784000, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2544750, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2544750, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1483250, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 24, - "textRun": { - "content": "No checklist questions.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 80, - "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" - } - } - }, - { - "endIndex": 80, - "textRun": { - "content": "✅/❌ Did you include any new user classes you have identified through your test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 146, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 146, - "textRun": { - "content": "✅/❌Did you include any new characteristics of your user classes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 232, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 232, - "textRun": { - "content": "✅/❌Did your findings reinforce any previously user classes or their characteristics?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 111, - "textRun": { - "content": "✅/❌ Did you include any new needs/goals (or update existing ones) based on your findings?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "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" - } - } - }, - { - "startIndex": 111, - "endIndex": 112, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 112, - "endIndex": 184, - "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" - } - } - }, - { - "startIndex": 112, - "endIndex": 184, - "textRun": { - "content": "✅/❌ Did your findings reinforce any previously identified needs/goals? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "For each existing solution:", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Have you discovered new solutions that users have attempted to meet their needs? If so, do you explain how these work?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 21, - "textRun": { - "content": "For each user class:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 175, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 175, - "textRun": { - "content": "✅/❌ Have you discovered new obstacles to existing solutions, or your solution? If so, do you explain why users are having struggles with those solutions?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 175, - "endIndex": 176, - "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" - } - } - }, - { - "startIndex": 175, - "endIndex": 176, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 176, - "endIndex": 315, - "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" - } - } - }, - { - "startIndex": 176, - "endIndex": 315, - "textRun": { - "content": "✅/❌ Did your design uncover new obstacles that prevented users from reaching their goal? If so, did you explain why those obstacles exist?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 28, - "textRun": { - "content": "For each problem statement:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 104, - "textRun": { - "content": "✅/❌ Does your updated problem statement capture any new needs or obstacles?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 105, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 105, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 185, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 185, - "textRun": { - "content": "✅/❌ Do you include a problem statement for any new user classes you discovered?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1483250, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1524000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 6 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_85", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 54, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "Mysore Template: Understanding Your Problem Statement", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 53, - "endIndex": 54, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_86", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_83:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_87", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_88", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_88" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_89", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_90", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 671900, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Restate your Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 97, - "textRun": { - "content": "What was your design argument that you were testing this user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Desired User Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 85, - "textRun": { - "content": "How has your understanding of the desired user outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Obstacles to user outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 80, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 80, - "textRun": { - "content": "How has your understanding of the obstacles changed? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 278, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 278, - "textRun": { - "content": "Was the main practical obstacle the same as the conceptual obstacle? In other words, is it some usability problem that is blocking progress, or is it the actual obstacle from your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 22, - "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" - } - } - }, - { - "endIndex": 22, - "textRun": { - "content": "Design Characteristic\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 22, - "endIndex": 92, - "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" - } - } - }, - { - "startIndex": 22, - "endIndex": 92, - "textRun": { - "content": "In what ways were your design characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Argument for your design\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 143, - "textRun": { - "content": "What did you learn about the argument for how your characteristics can overcome the obstacles to reach user outcomes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 671900, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2850650, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2850650, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1289475, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Based on your user testing, did you have an updated description of what users want to be able to do?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 328, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 142, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 328, - "textRun": { - "content": " want users to do? In other words, did your users use your previous design in an unanticipated way that was not desirable, or helped you understand what outcomes users don’t care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 72, - "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" - } - } - }, - { - "endIndex": 72, - "textRun": { - "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 73, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 73, - "endIndex": 139, - "textRun": { - "content": "✅/❌ Did you include any new understanding about why designs fail?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "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" - } - } - }, - { - "startIndex": 139, - "endIndex": 140, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 140, - "endIndex": 326, - "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" - } - } - }, - { - "startIndex": 140, - "endIndex": 311, - "textRun": { - "content": "✅/❌ Does your understanding of obstacles point to what kinds of designs may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 311, - "endIndex": 314, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 314, - "endIndex": 326, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 97, - "textRun": { - "content": "✅/❌ Did your characteristics support users in achieving the high-level outcomes they care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 74, - "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" - } - } - }, - { - "endIndex": 74, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 74, - "endIndex": 75, - "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" - } - } - }, - { - "startIndex": 74, - "endIndex": 75, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 75, - "endIndex": 148, - "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" - } - } - }, - { - "startIndex": 75, - "endIndex": 148, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "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" - } - } - }, - { - "startIndex": 148, - "endIndex": 149, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1289475, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_91", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 52, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Mysore Template: Understanding Your Design Argument", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 52, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_92", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_89:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_93", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_94", - "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": 143, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Check the updated prompts ", - "style": {} - } - }, - { - "startIndex": 26, - "endIndex": 141, - "textRun": { - "content": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73", - "style": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "HYPERLINK" - } - }, - "link": { - "url": "https://docs.google.com/presentation/d/1yeA9-ltKs4jzgeNGLsO5gvg27i21a_KxEHzrCcLpPrQ/edit#slide=id.g1264dfdd63c_0_73" - }, - "underline": true - } - } - }, - { - "startIndex": 141, - "endIndex": 143, - "textRun": { - "content": " \n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_94" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_95", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_96", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 570175, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Restate your Interface Model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 139, - "textRun": { - "content": "What was the interface model you used to implement your design argument that you were testing this user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Desired Interface Outcomes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 97, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 96, - "textRun": { - "content": "How has your understanding of the desired interface outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 96, - "endIndex": 97, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Obstacle to Interface Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 30, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 30, - "endIndex": 83, - "textRun": { - "content": "How has your understanding of the obstacles changed? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 83, - "endIndex": 84, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Interface Feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 18, - "endIndex": 91, - "textRun": { - "content": "In what ways were your interface characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Argument for your interface feature\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 164, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 164, - "textRun": { - "content": "What did you learn about the argument for how your interface feature can overcome the obstacles to reach the interface outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 570175, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2938725, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2938725, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1303100, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 146, - "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" - } - } - }, - { - "endIndex": 146, - "textRun": { - "content": "✅/❌ Based on your user testing, do you have an updated description of what your interface needs to do in order to implement your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "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" - } - } - }, - { - "startIndex": 146, - "endIndex": 147, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 147, - "endIndex": 359, - "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" - } - } - }, - { - "startIndex": 147, - "endIndex": 180, - "textRun": { - "content": "✅/❌ Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 183, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 183, - "endIndex": 359, - "textRun": { - "content": " want your interface to allow? In other words, did your users use your previous interface in an unanticipated way that was not desirable to instantiating your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 72, - "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" - } - } - }, - { - "endIndex": 72, - "textRun": { - "content": "✅/❌ Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 73, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 73, - "endIndex": 150, - "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" - } - } - }, - { - "startIndex": 73, - "endIndex": 150, - "textRun": { - "content": "✅/❌ Did you include any new understanding about why interface features fail?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "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" - } - } - }, - { - "startIndex": 150, - "endIndex": 151, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 348, - "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" - } - } - }, - { - "startIndex": 151, - "endIndex": 333, - "textRun": { - "content": "✅/❌ Does your understanding of obstacles point to what kinds of interface features may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 333, - "endIndex": 336, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 336, - "endIndex": 348, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 74, - "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" - } - } - }, - { - "endIndex": 74, - "textRun": { - "content": "✅/❌ Did your interface feature realize your design argument as intended? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 84, - "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" - } - } - }, - { - "endIndex": 84, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the interface argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 168, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the interface argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 169, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 169, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1303100, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_97", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 52, - "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" - } - } - }, - { - "endIndex": 51, - "textRun": { - "content": "Mysore Template: Understanding Your Interface Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 51, - "endIndex": 52, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_98", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_95:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_99", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_100", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_100" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_101", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_102", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331477.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 514350, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Restate your System Model\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 96, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 96, - "textRun": { - "content": "What was the system model you used to implement your interface model?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Desired System Outcomes", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 90, - "textRun": { - "content": "How has your understanding of the desired system outcomes changed?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Obstacle to System Outcome", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 80, - "textRun": { - "content": "How has your understanding of the obstacles changed? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "System Methods or Techniques\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 99, - "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" - } - } - }, - { - "startIndex": 29, - "endIndex": 99, - "textRun": { - "content": "In what ways were your system characteristics effective? Ineffective?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Argument for your system method/technique\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 158, - "textRun": { - "content": "What did you learn about the argument for how your approach can overcome the obstacles to reach the system outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 514350, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2967625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2967625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1298850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "No checklist questions.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 142, - "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" - } - } - }, - { - "endIndex": 142, - "textRun": { - "content": "✅/❌Based on your user testing, do you have an updated description of what your system needs to do in order to implement your interface model?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 143, - "endIndex": 290, - "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" - } - } - }, - { - "startIndex": 143, - "endIndex": 175, - "textRun": { - "content": "✅/❌Did you include what you may ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 175, - "endIndex": 178, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 178, - "endIndex": 290, - "textRun": { - "content": " want your system model to allow? In other words, did your users attempt to use your system in unintended ways?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 71, - "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" - } - } - }, - { - "endIndex": 71, - "textRun": { - "content": "✅/❌Did you include any new obstacles that you learned through testing?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 71, - "endIndex": 72, - "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" - } - } - }, - { - "startIndex": 71, - "endIndex": 72, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 72, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 72, - "endIndex": 157, - "textRun": { - "content": "✅/❌Did you include any new understanding about why your system implementation fails?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 157, - "endIndex": 158, - "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" - } - } - }, - { - "startIndex": 157, - "endIndex": 158, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 158, - "endIndex": 358, - "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" - } - } - }, - { - "startIndex": 158, - "endIndex": 343, - "textRun": { - "content": "✅/❌Does your understanding of obstacles point to what kinds of system implementations may succeed? In other words, do you understand now how to design successfully by understanding how ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 343, - "endIndex": 346, - "textRun": { - "content": "not", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 346, - "endIndex": 358, - "textRun": { - "content": " to design?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 118, - "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" - } - } - }, - { - "endIndex": 118, - "textRun": { - "content": "✅/❌Did your system model (and associated implementation methods/techniques) realize your interface model as intended?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 81, - "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" - } - } - }, - { - "endIndex": 81, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the system argument broke down? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "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" - } - } - }, - { - "startIndex": 81, - "endIndex": 82, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 82, - "endIndex": 162, - "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" - } - } - }, - { - "startIndex": 82, - "endIndex": 162, - "textRun": { - "content": "✅/❌ Did you capture your understanding of where the system argument succeeded? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 162, - "endIndex": 163, - "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" - } - } - }, - { - "startIndex": 162, - "endIndex": 163, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1298850, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_103", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Understanding Your System Model", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_104", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_101:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_105", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_106", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_106" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_107", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_108", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 121, - "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" - } - } - }, - { - "endIndex": 121, - "textRun": { - "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "textRun": { - "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "textRun": { - "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "textRun": { - "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "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" - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_109", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_110", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_107:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_111", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_112", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_112" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_6", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.1776, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 58, - "textRun": { - "content": "Takeaways from User Testing #2 (with Li)\n", - "style": {} - } - }, - { - "startIndex": 58, - "endIndex": 75, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 58, - "endIndex": 75, - "textRun": { - "content": "Do all 6 slides!\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_6:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_10", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_11", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Mind Dump / “Off the top”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 127, - "textRun": { - "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 128, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 49, - "textRun": { - "content": "Restate your Problem Statement + Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 136, - "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" - } - } - }, - { - "startIndex": 49, - "endIndex": 135, - "textRun": { - "content": "What was your problem statement and design argument that you tested in this user test?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 135, - "endIndex": 136, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Testing Scenario + Measures", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 120, - "textRun": { - "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Individual Key Insights", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 93, - "textRun": { - "content": "As individuals, where were some insights you had from the user test? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Synthesize Key Insights as a Group\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "textRun": { - "content": "As a group, what were your key insights?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4266450, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 66, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "endIndex": 66, - "textRun": { - "content": "1. Li thought the Applicable Set block is for detecting situation\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 254, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 66, - "endIndex": 180, - "textRun": { - "content": "2. Assumed the script will operate for all projects, and the script will automatically operate for each sprint -> ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 254, - "textRun": { - "content": "need to specific execution logic of the system or do something equivalent\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "themeColor": "ACCENT6" - } - }, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 254, - "endIndex": 291, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 254, - "endIndex": 291, - "textRun": { - "content": "3. Didn’t specify part of the sprint\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 291, - "endIndex": 339, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 291, - "endIndex": 339, - "textRun": { - "content": "4. Clicked on the white tab in tools categories\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 339, - "endIndex": 512, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 339, - "endIndex": 433, - "textRun": { - "content": "5. Text send block -> medium is place/who you are sending to (SIG OH blocks are confusing) -> ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 433, - "endIndex": 512, - "textRun": { - "content": "should raise error when blocks other than slack or email is attached to medium\n", - "style": { - "backgroundColor": { - "opaqueColor": { - "themeColor": "ACCENT6" - } - }, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 512, - "endIndex": 677, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "magnitude": 10, - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "startIndex": 512, - "endIndex": 632, - "textRun": { - "content": "6. Want to ask the question at SIG -> thought the text send block would send right at the SIG so he will bring it up -> ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 632, - "endIndex": 676, - "textRun": { - "content": "need guidance on which block should go where", - "style": { - "backgroundColor": { - "opaqueColor": { - "themeColor": "ACCENT6" - } - }, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 676, - "endIndex": 677, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.5ri3mahafe48": { - "listId": "kix.5ri3mahafe48", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.8205q01gxa3e": { - "listId": "kix.8205q01gxa3e", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.i113f9cri0bo": { - "listId": "kix.i113f9cri0bo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.s9sznpijevks": { - "listId": "kix.s9sznpijevks", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 212, - "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" - } - } - }, - { - "endIndex": 212, - "textRun": { - "content": "This test was for testing our Interface argument: with blockly workspace, mentors would be able to write scripts that they want to using our interface (after they have a clear idea of what they’re scripting for)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 212, - "endIndex": 213, - "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" - } - } - }, - { - "startIndex": 212, - "endIndex": 213, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 213, - "endIndex": 214, - "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" - } - } - }, - { - "startIndex": 213, - "endIndex": 214, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 214, - "endIndex": 215, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 123, - "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" - } - } - }, - { - "endIndex": 123, - "textRun": { - "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 210, - "textRun": { - "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 210, - "endIndex": 216, - "textRun": { - "content": " Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 322, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 322, - "textRun": { - "content": "We set out to test this by asking the user to script for a simple yet frequent situation that we chose: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 322, - "endIndex": 400, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.co5ukh9un64i", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 322, - "endIndex": 400, - "textRun": { - "content": "Write a script that will detect if any project is over-committing in a sprint\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 400, - "endIndex": 446, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.co5ukh9un64i", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 400, - "endIndex": 446, - "textRun": { - "content": "This script should run for the entire quarter\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 446, - "endIndex": 564, - "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" - } - } - }, - { - "startIndex": 446, - "endIndex": 564, - "textRun": { - "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 564, - "endIndex": 565, - "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" - } - } - }, - { - "startIndex": 564, - "endIndex": 565, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 565, - "endIndex": 627, - "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" - } - } - }, - { - "startIndex": 565, - "endIndex": 626, - "textRun": { - "content": "Strategy: open-ended, (e.g. send out slack message to mentor)", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 626, - "endIndex": 627, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 627, - "endIndex": 628, - "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" - } - } - }, - { - "startIndex": 627, - "endIndex": 628, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 628, - "endIndex": 629, - "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" - } - } - }, - { - "startIndex": 628, - "endIndex": 629, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 629, - "endIndex": 663, - "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" - } - } - }, - { - "startIndex": 629, - "endIndex": 663, - "textRun": { - "content": "If interface argument == correct:\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 663, - "endIndex": 737, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.eg76jxd69d", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 6, - "unit": "PT" - } - } - } - } - }, - { - "startIndex": 663, - "endIndex": 737, - "textRun": { - "content": "User should be able to write a script close to the sample script smoothly\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 737, - "endIndex": 893, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "START", - "indentStart": { - "magnitude": 36, - "unit": "PT" - }, - "indentEnd": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "spaceBelow": { - "unit": "PT" - }, - "indentFirstLine": { - "magnitude": 18, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "COLLAPSE_LISTS" - }, - "bullet": { - "listId": "kix.eg76jxd69d", - "glyph": "●", - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "underline": false - } - } - } - }, - { - "startIndex": 737, - "endIndex": 893, - "textRun": { - "content": "Measurements:\u000b- correctness of script (most important)\u000b- degree of confusion in the scripting process\u000b- any misunderstanding of blocks/interface components\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 893, - "endIndex": 894, - "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" - } - } - }, - { - "startIndex": 893, - "endIndex": 894, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.co5ukh9un64i": { - "listId": "kix.co5ukh9un64i", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.eg76jxd69d": { - "listId": "kix.eg76jxd69d", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "Synthesize a list of 4-5 key insights across your team.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4266450, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2117e6dac59_1_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Quick Takeaways from User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2117e6dac59_1_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_10:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_14", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_15", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_15" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g2117e6dac59_1_40", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_41", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 138, - "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" - } - } - }, - { - "endIndex": 138, - "textRun": { - "content": "Whether user will be able to compose the correct script for a specified situation (or something close to the correct script that works). \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 6, - "textRun": { - "content": "Yes. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 6, - "endIndex": 7, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 7, - "endIndex": 172, - "textRun": { - "content": "Li is not a mentor, but we’re trying to expand our user group to include students, so it’s really valuable to test with a student who have not used our tool before.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 118, - "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" - } - } - }, - { - "endIndex": 118, - "textRun": { - "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 181, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 181, - "textRun": { - "content": "Strategy: open-ended, (e.g. send out slack message to mentor)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "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" - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 121, - "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" - } - } - }, - { - "endIndex": 121, - "textRun": { - "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "textRun": { - "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "textRun": { - "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "textRun": { - "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "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" - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g2117e6dac59_1_42", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g2117e6dac59_1_43", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g2117e6dac59_1_40:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g2117e6dac59_1_44", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g2117e6dac59_1_45", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g2117e6dac59_1_45" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1d1402d483f_0_0", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.1776, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 61, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 61, - "textRun": { - "content": "Takeaways from User Testing #3 (with Haoqi)\n", - "style": {} - } - }, - { - "startIndex": 61, - "endIndex": 62, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 61, - "endIndex": 62, - "textRun": { - "content": "\n", - "style": { - "bold": true, - "italic": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1d1402d483f_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1d1402d483f_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1d1402d483f_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1d1402d483f_0_4", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "Mind Dump / “Off the top”\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 128, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 127, - "textRun": { - "content": "Off the top of your head, what did you learn from your user tests (e.g., major insights/pain points)?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 127, - "endIndex": 128, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 49, - "textRun": { - "content": "Restate your Problem Statement + Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 49, - "endIndex": 136, - "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" - } - } - }, - { - "startIndex": 49, - "endIndex": 135, - "textRun": { - "content": "What was your problem statement and design argument that you tested in this user test?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 135, - "endIndex": 136, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Testing Scenario + Measures", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 28, - "endIndex": 121, - "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" - } - } - }, - { - "startIndex": 28, - "endIndex": 120, - "textRun": { - "content": "(How) did your testing scenario enable you to test this problem statement + design argument?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 120, - "endIndex": 121, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Individual Key Insights", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 94, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 93, - "textRun": { - "content": "As individuals, where were some insights you had from the user test? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 94, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "Synthesize Key Insights as a Group\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 76, - "textRun": { - "content": "As a group, what were your key insights?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4266450, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Problem statement: \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 110, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 110, - "textRun": { - "content": "Mentors face abstraction challenges when they try to script for ill-structured problems. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 110, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 110, - "endIndex": 111, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 111, - "endIndex": 189, - "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" - } - } - }, - { - "startIndex": 111, - "endIndex": 189, - "textRun": { - "content": "For this slice, we’re focusing on the problem of underscoped on root causes. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 189, - "endIndex": 221, - "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" - } - } - }, - { - "startIndex": 189, - "endIndex": 221, - "textRun": { - "content": "It’s often hard for mentors to \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 221, - "endIndex": 222, - "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" - } - } - }, - { - "startIndex": 221, - "endIndex": 222, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 222, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 222, - "endIndex": 223, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 9, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 123, - "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" - } - } - }, - { - "endIndex": 123, - "textRun": { - "content": "What did you expect to observe or measure from your user test, as it relates to your problem statement + design argument? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 210, - "textRun": { - "content": "How did you plan to observe + measure these? Were you able to observe + measure these?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 210, - "endIndex": 216, - "textRun": { - "content": " Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 217, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "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" - } - } - }, - { - "startIndex": 217, - "endIndex": 218, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ], - "lists": { - "kix.co5ukh9un64i": { - "listId": "kix.co5ukh9un64i", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.eg76jxd69d": { - "listId": "kix.eg76jxd69d", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "Synthesize a list of 4-5 key insights across your team.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "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" - } - } - }, - { - "startIndex": 57, - "endIndex": 58, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4266450, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g1d1402d483f_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 51, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Quick Takeaways from User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g1d1402d483f_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1d1402d483f_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1d1402d483f_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1d1402d483f_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1d1402d483f_0_10", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_11", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 630875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Outcome of User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 24, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 24, - "endIndex": 85, - "textRun": { - "content": "What were you specifically trying to test in your user tests?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "User Testing Participants", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 67, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 66, - "textRun": { - "content": "Did you get the participants you wanted?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 67, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "User Test Scenario\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 133, - "textRun": { - "content": "Did your testing scenario help you know whether the outcome was reached, and how your design argument is working?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "High-Level Findings\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 171, - "textRun": { - "content": "At a high-level, what did you learn from your user tests (e.g., major insights/pain points)? What did you not learn that you want to be able to learn?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 630875, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2607800, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 138, - "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" - } - } - }, - { - "endIndex": 138, - "textRun": { - "content": "Whether user will be able to compose the correct script for a specified situation (or something close to the correct script that works). \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "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" - } - } - }, - { - "startIndex": 138, - "endIndex": 139, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 6, - "textRun": { - "content": "Yes. \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 6, - "endIndex": 7, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 7, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 7, - "endIndex": 172, - "textRun": { - "content": "Li is not a mentor, but we’re trying to expand our user group to include students, so it’s really valuable to test with a student who have not used our tool before.\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 118, - "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" - } - } - }, - { - "endIndex": 118, - "textRun": { - "content": "Specified situation: an all-quarter monitor script that checks at the end of reach sprint whether teams overcommitted\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "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" - } - } - }, - { - "startIndex": 118, - "endIndex": 119, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 119, - "endIndex": 181, - "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" - } - } - }, - { - "startIndex": 119, - "endIndex": 181, - "textRun": { - "content": "Strategy: open-ended, (e.g. send out slack message to mentor)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "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" - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "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" - } - } - }, - { - "startIndex": 182, - "endIndex": 183, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2607800, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1573325, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 121, - "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" - } - } - }, - { - "endIndex": 121, - "textRun": { - "content": "✅/❌ Did what you learn teach you about how and why your design argument may help with helping achieve this user outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "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" - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "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" - } - } - }, - { - "startIndex": 122, - "endIndex": 123, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "✅/❌Were the users representative of the user classes you targeted in your design arguments?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "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" - } - } - }, - { - "startIndex": 92, - "endIndex": 93, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 93, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Did you have any struggles accessing users? Why? How might you mitigate these issues moving forward? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "✅/❌ Were you testing high-level tasks that users will do, instead of low-level actions in the prototype?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 167, - "textRun": { - "content": "✅/❌ Was the scenario you tested your prototype in realistic?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "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" - } - } - }, - { - "startIndex": 167, - "endIndex": 168, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "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" - } - } - }, - { - "startIndex": 168, - "endIndex": 258, - "textRun": { - "content": "✅/❌ Were you able to collect the data on users using the prototype in ways that you want?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "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" - } - } - }, - { - "startIndex": 258, - "endIndex": 259, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "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" - } - } - }, - { - "startIndex": 259, - "endIndex": 467, - "textRun": { - "content": "✅/❌ Were you able to observe how people reached the desired outcome (or not)? More important, were you able to observe *how* users were able to overcome (or not) the obstacles stated in your design argument?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "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" - } - } - }, - { - "startIndex": 467, - "endIndex": 468, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "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" - } - } - }, - { - "startIndex": 468, - "endIndex": 540, - "textRun": { - "content": "✅/❌ Do you consider any ethical considerations about your testing plan?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 108, - "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" - } - } - }, - { - "endIndex": 108, - "textRun": { - "content": "✅/❌ Does your findings describe a major insight or pain point that users experienced during your user test?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "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" - } - } - }, - { - "startIndex": 108, - "endIndex": 109, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "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" - } - } - }, - { - "startIndex": 109, - "endIndex": 202, - "textRun": { - "content": "✅/❌ Did you capture any issues with your testing that you’d like to rectify in future tests?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "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" - } - } - }, - { - "startIndex": 202, - "endIndex": 203, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1573325, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g1d1402d483f_0_12", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Reflecting on your User Testing", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g1d1402d483f_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1d1402d483f_0_10:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1d1402d483f_0_14", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1d1402d483f_0_15", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1d1402d483f_0_15" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1155fa25785_0_0", - "pageElements": [ - { - "objectId": "g1155fa25785_0_1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.514, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 17, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Practical Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 17, - "endIndex": 42, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 17, - "endIndex": 42, - "textRun": { - "content": "Organizing Core Findings\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1155fa25785_0_0:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1155fa25785_0_2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1155fa25785_0_3", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1155fa25785_0_3" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g1155fa25785_0_4", - "pageElements": [ - { - "objectId": "g1155fa25785_0_5", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 4, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 498850, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 16, - "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" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "Statement of RQ\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 16, - "endIndex": 197, - "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" - } - } - }, - { - "startIndex": 16, - "endIndex": 197, - "textRun": { - "content": "Typically of the form: Does these design characteristics achieve the desired outcome? How does these design characteristics help to overcome the obstacles to reaching this outcome?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "What is your finding? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 60, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 60, - "textRun": { - "content": "One sentence summary of core finding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 34, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Provide Evidence for Core Finding", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 81, - "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" - } - } - }, - { - "startIndex": 34, - "endIndex": 80, - "textRun": { - "content": "Relevant tables, figures, charts, quotes, etc.", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 81, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Implications for Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 124, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 123, - "textRun": { - "content": "Based on this finding, what part of your design argument was (1) correct and (2) incorrect", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 123, - "endIndex": 124, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 124, - "endIndex": 125, - "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" - } - } - }, - { - "startIndex": 124, - "endIndex": 125, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "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" - } - } - }, - { - "startIndex": 125, - "endIndex": 126, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 36, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Limitations and Remaining Obstacles\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 101, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 101, - "textRun": { - "content": "What parts of your design argument or claims couldn't be tested?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 101, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 101, - "endIndex": 172, - "textRun": { - "content": "What new obstacles were encountered for reaching the desired outcomes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 498850, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1644725, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "RQ about outcomes\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.i113f9cri0bo": { - "listId": "kix.i113f9cri0bo", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.s9sznpijevks": { - "listId": "kix.s9sznpijevks", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "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" - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "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" - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 105, - "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" - } - } - }, - { - "endIndex": 105, - "textRun": { - "content": "Perhaps a table or a chart, that shows that the problem has been overcome (i.e., the outcome is reached)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "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" - } - } - }, - { - "startIndex": 105, - "endIndex": 106, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 106, - "endIndex": 107, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.jd1po5vu03j4": { - "listId": "kix.jd1po5vu03j4", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Describe correct parts of design argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "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" - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "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" - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 89, - "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" - } - } - }, - { - "startIndex": 45, - "endIndex": 89, - "textRun": { - "content": "Describe incorrect parts of design argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 89, - "endIndex": 90, - "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" - } - } - }, - { - "startIndex": 89, - "endIndex": 90, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "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" - } - } - }, - { - "startIndex": 90, - "endIndex": 91, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Describe what couldn't be tested\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "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" - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 55, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 54, - "textRun": { - "content": "Describe obstacles", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 54, - "endIndex": 55, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1644725, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1347550, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "RQ about mechanisms\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 152, - "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" - } - } - }, - { - "endIndex": 152, - "textRun": { - "content": "Perhaps an example or quote, that helps to illustrate how one of the core distinguishing characteristics supported solving the problem (the mechanisms)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 152, - "endIndex": 153, - "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" - } - } - }, - { - "startIndex": 152, - "endIndex": 153, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 42, - "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" - } - } - }, - { - "endIndex": 42, - "textRun": { - "content": "Describe correct parts of design argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "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" - } - } - }, - { - "startIndex": 42, - "endIndex": 43, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "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" - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "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" - } - } - }, - { - "startIndex": 44, - "endIndex": 45, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 89, - "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" - } - } - }, - { - "startIndex": 45, - "endIndex": 89, - "textRun": { - "content": "Describe incorrect parts of design argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 89, - "endIndex": 90, - "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" - } - } - }, - { - "startIndex": 89, - "endIndex": 90, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Describe what couldn't be tested\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "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" - } - } - }, - { - "startIndex": 34, - "endIndex": 35, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 55, - "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" - } - } - }, - { - "startIndex": 36, - "endIndex": 55, - "textRun": { - "content": "Describe obstacles\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1347550, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1080500, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 87, - "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" - } - } - }, - { - "endIndex": 87, - "textRun": { - "content": "✅/❌ Have you created an RQ about mechanisms, or how characteristic overcomes obstacle?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 76, - "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" - } - } - }, - { - "endIndex": 76, - "textRun": { - "content": "✅/❌ Could what you wrote be used as a topic sentence in a results section?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 76, - "endIndex": 77, - "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" - } - } - }, - { - "startIndex": 76, - "endIndex": 77, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 77, - "endIndex": 179, - "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" - } - } - }, - { - "startIndex": 77, - "endIndex": 179, - "textRun": { - "content": "✅/❌ Have you written findings for both the outcome (does it work), and the mechanism (why it works)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 97, - "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" - } - } - }, - { - "endIndex": 97, - "textRun": { - "content": "✅/❌ Have you presented or explained the evidence, rather than just showing/listing the measure?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "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" - } - } - }, - { - "startIndex": 97, - "endIndex": 98, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 4, - "textRun": { - "content": "✅/❌ ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 4, - "textRun": { - "content": "✅/❌ ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.4, - "green": 0.4, - "blue": 0.4 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1080500, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "g1155fa25785_0_6", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 34, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "Mysore Template: Findings/Results", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "g1155fa25785_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "g1155fa25785_0_4:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "g1155fa25785_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "g1155fa25785_0_9", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "g1155fa25785_0_9" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_113", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_114", - "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": 9, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 9, - "textRun": { - "content": "Planning\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 9, - "endIndex": 45, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 9, - "endIndex": 44, - "textRun": { - "content": "Risk Assessment and Troubleshooting", - "style": {} - } - }, - { - "startIndex": 44, - "endIndex": 45, - "textRun": { - "content": "\n", - "style": { - "bold": true - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_113:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_115", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_116", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_116" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_117", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_118", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 606925, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 2, - "tableRows": [ - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Reflect on your learning\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 107, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 107, - "textRun": { - "content": "What new things did you learn last week about your problem, users, designs, etc.?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.pm2gxt1dmu7h": { - "listId": "kix.pm2gxt1dmu7h", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Gaps in your understanding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 142, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 142, - "textRun": { - "content": "Based on your write-up of your current understanding, what gaps or risks do you still have in your understanding? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "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" - } - } - }, - { - "startIndex": 142, - "endIndex": 143, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 143, - "endIndex": 222, - "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" - } - } - }, - { - "startIndex": 143, - "endIndex": 222, - "textRun": { - "content": "Why are they risks (i.e., why are they important to address before moving on)?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 222, - "endIndex": 223, - "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" - } - } - }, - { - "startIndex": 222, - "endIndex": 223, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 223, - "endIndex": 296, - "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" - } - } - }, - { - "startIndex": 223, - "endIndex": 296, - "textRun": { - "content": "(Hint: have you answered all the scaffolding questions for each prompt?)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.spscosx982zh": { - "listId": "kix.spscosx982zh", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "Prioritizing Risks\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 111, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 111, - "textRun": { - "content": "What are the 1-2 risks that are the most important to address in the following sprint? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.w0r4mja39gtj": { - "listId": "kix.w0r4mja39gtj", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1976025, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2549550, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_119", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.499, - "scaleY": 0.0918, - "translateY": 331700.185, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 46, - "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" - } - } - }, - { - "endIndex": 45, - "textRun": { - "content": "Assessing Current Risks in Your Understanding", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 46, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_120", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.0918, - "translateX": 4572000, - "translateY": 331497.87, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Planning Your Next Sprint", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 26, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 8, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_121", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateX": 4572000, - "translateY": 606923.8875, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 2, - "tableRows": [ - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 25, - "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" - } - } - }, - { - "endIndex": 25, - "textRun": { - "content": "Goal of your next sprint\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 25, - "endIndex": 103, - "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" - } - } - }, - { - "startIndex": 25, - "endIndex": 103, - "textRun": { - "content": "What do you need to do to address the risks that you prioritized on the left?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "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" - } - } - }, - { - "startIndex": 103, - "endIndex": 104, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 104, - "endIndex": 155, - "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" - } - } - }, - { - "startIndex": 104, - "endIndex": 155, - "textRun": { - "content": "What do you already know, and what don’t you know?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 155, - "endIndex": 156, - "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" - } - } - }, - { - "startIndex": 155, - "endIndex": 156, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 156, - "endIndex": 231, - "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" - } - } - }, - { - "startIndex": 156, - "endIndex": 231, - "textRun": { - "content": "What is a deliverable you could work towards that would address this risk?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.j99w4xk6070m": { - "listId": "kix.j99w4xk6070m", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.pm2gxt1dmu7h": { - "listId": "kix.pm2gxt1dmu7h", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.rx3k85e9ilce": { - "listId": "kix.rx3k85e9ilce", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.yq43m1osz8ba": { - "listId": "kix.yq43m1osz8ba", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Roadblocks to meeting goal\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 84, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 84, - "textRun": { - "content": "What might go wrong in trying to address your risk? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "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" - } - } - }, - { - "startIndex": 84, - "endIndex": 85, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 161, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 161, - "textRun": { - "content": "What have you tried already to address this risk? Why has that not worked? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.spscosx982zh": { - "listId": "kix.spscosx982zh", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - }, - "kix.uv117p62fl0i": { - "listId": "kix.uv117p62fl0i", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1512200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 44, - "textRun": { - "content": "Strategies to overcome potential roadblocks\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 235, - "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" - } - } - }, - { - "startIndex": 44, - "endIndex": 235, - "textRun": { - "content": "What are some ways that you can work to address your risks, given the obstacles above and the constraints of the 1-week sprint? (e.g., are there different needfinding methods you could try?)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 235, - "endIndex": 236, - "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" - } - } - }, - { - "startIndex": 235, - "endIndex": 236, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 236, - "endIndex": 388, - "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" - } - } - }, - { - "startIndex": 236, - "endIndex": 388, - "textRun": { - "content": "What are specific tasks you might do? What would be the deliverable of each of those tasks? How would they contribute to your overall goal/deliverable?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.w0r4mja39gtj": { - "listId": "kix.w0r4mja39gtj", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - } - } - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 1, - "green": 1, - "blue": 1 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1512200, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2047875, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2524125, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_122", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 46, - "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" - } - } - }, - { - "endIndex": 45, - "textRun": { - "content": "Mysore Template: Risk Assessment and Planning", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 45, - "endIndex": 46, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_123", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_117:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_124", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_125", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_125" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_126", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_127", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 349202.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 430300, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "Goal\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 5, - "endIndex": 75, - "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" - } - } - }, - { - "startIndex": 5, - "endIndex": 75, - "textRun": { - "content": "What do you want to learn this week or sprint? Why is this important?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 32, - "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" - } - } - }, - { - "endIndex": 32, - "textRun": { - "content": "Roadblocks to meeting your goal\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 32, - "endIndex": 83, - "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" - } - } - }, - { - "startIndex": 32, - "endIndex": 83, - "textRun": { - "content": "What might go wrong in trying meet your goal? Why?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 122, - "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" - } - } - }, - { - "endIndex": 43, - "textRun": { - "content": "Strategies to overcome potential roadblocks", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 44, - "endIndex": 121, - "textRun": { - "content": "What are some ways that you might overcome your obstacles to meet your goal? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 121, - "endIndex": 122, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 96, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Argument for success", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\u000b", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 95, - "textRun": { - "content": "Why might your strategy to overcome the potential roadblock be successful?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 96, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 430300, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2876225, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2876225, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1439200, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 65, - "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" - } - } - }, - { - "endIndex": 65, - "textRun": { - "content": "✅/❌ Do you state what you know already and what you don’t know? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 179, - "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" - } - } - }, - { - "startIndex": 66, - "endIndex": 179, - "textRun": { - "content": "✅/❌ Do you state why you want to learn this new thing and why it would be helpful to your project/understanding?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 179, - "endIndex": 180, - "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" - } - } - }, - { - "startIndex": 179, - "endIndex": 180, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 180, - "endIndex": 373, - "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" - } - } - }, - { - "startIndex": 180, - "endIndex": 273, - "textRun": { - "content": "✅/❌ Do you state what success or a set of deliverables would look like if you met your goal? ", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 273, - "endIndex": 372, - "textRun": { - "content": "(hint: think about ways you could meet your goal as stated, but NOT learn what you wanted to learn)", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 372, - "endIndex": 373, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 79, - "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" - } - } - }, - { - "endIndex": 79, - "textRun": { - "content": "✅/❌ Do you state why each roadblock might prevent you from reaching your goal?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 79, - "endIndex": 80, - "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" - } - } - }, - { - "startIndex": 79, - "endIndex": 80, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 80, - "endIndex": 215, - "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" - } - } - }, - { - "startIndex": 80, - "endIndex": 215, - "textRun": { - "content": "✅/❌ Is each roadblock specific enough that you can consider a potential solution later on? (if not, consider breaking it down further)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 215, - "endIndex": 216, - "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" - } - } - }, - { - "startIndex": 215, - "endIndex": 216, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 216, - "endIndex": 318, - "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" - } - } - }, - { - "startIndex": 216, - "endIndex": 318, - "textRun": { - "content": "✅/❌ Do you include previous approaches to meeting your goal, and why those have not been successful? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 65, - "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" - } - } - }, - { - "endIndex": 65, - "textRun": { - "content": "✅/❌ Does your strategy include specific tasks that you might do?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "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" - } - } - }, - { - "startIndex": 65, - "endIndex": 66, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 66, - "endIndex": 172, - "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" - } - } - }, - { - "startIndex": 66, - "endIndex": 172, - "textRun": { - "content": "✅/❌ Does your strategy include specific deliverables that align with the deliverables in the Goal column?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 172, - "endIndex": 173, - "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" - } - } - }, - { - "startIndex": 172, - "endIndex": 173, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 173, - "endIndex": 280, - "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" - } - } - }, - { - "startIndex": 173, - "endIndex": 280, - "textRun": { - "content": "✅/❌ Does your strategy consider potential constraints of your sprint? (e.g., time available during 1-week)\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 137, - "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" - } - } - }, - { - "endIndex": 137, - "textRun": { - "content": "✅/❌ Look back at the goal and roadblocks columns. Do you argue for why your strategies will overcome those roadblocks to meet your goal?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 137, - "endIndex": 138, - "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" - } - } - }, - { - "startIndex": 137, - "endIndex": 138, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 138, - "endIndex": 317, - "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" - } - } - }, - { - "startIndex": 138, - "endIndex": 317, - "textRun": { - "content": "✅/❌ Is your proposed strategy unique from or a sufficient advancement on previous unsuccessful approaches? In other words, could it still fail based on what you tried previously?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1439200, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gcbd9fbfbdf_0_128", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 49, - "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" - } - } - }, - { - "endIndex": 48, - "textRun": { - "content": "Mysore Template: Troubleshooting Your __________", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 48, - "endIndex": 49, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_129", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_126:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_130", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_131", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_131" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_132", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_133", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 44, - "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" - } - } - }, - { - "endIndex": 43, - "textRun": { - "content": "Mysore Template: Planning for Status Update", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 43, - "endIndex": 44, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_134", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_135", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 349202.5, - "unit": "EMU" - }, - "table": { - "rows": 2, - "columns": 5, - "tableRows": [ - { - "rowHeight": { - "magnitude": 521275, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 92, - "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" - } - } - }, - { - "endIndex": 92, - "textRun": { - "content": "What risks do you see in your project? What would you want to learn to address these risks?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 30, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Who’s there that can help me?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 29, - "endIndex": 30, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 100, - "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" - } - } - }, - { - "endIndex": 100, - "textRun": { - "content": "Where could you get help from them? Why/why not would status update be a good place for your risks?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 70, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "What is the minimal amount of my project they need to see to help me?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "What’s a status update plan that will help you address your risks? \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 521275, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 4273025, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "What are example status updates people have gotten a lot out of? Do I have a need like those?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": { - "red": 0.7176471, - "green": 0.7176471, - "blue": 0.7176471 - } - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 4273025, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 1828800, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_132:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_136", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_137", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_137" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_138", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_139", - "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": 18, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Conceptual Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 18, - "endIndex": 38, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 18, - "endIndex": 38, - "textRun": { - "content": "Conceptual Approach\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_138:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_140", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_141", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_141" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_142", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_143", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 3.048, - "scaleY": 0.1909, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 23, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Approach Tree [Part 1]\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p4_i0" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_144", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6683, - "scaleY": 0.3428, - "translateX": 51775, - "translateY": 2458550, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 55, - "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" - } - } - }, - { - "endIndex": 55, - "textRun": { - "content": "2. What is a class of problems researchers care about?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 55, - "endIndex": 56, - "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" - } - } - }, - { - "startIndex": 55, - "endIndex": 56, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_145", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6683, - "scaleY": 0.3428, - "translateX": 51775, - "translateY": 1144700, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "1.What is at issue in the field?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 34, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_146", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6683, - "scaleY": 0.3428, - "translateX": 51775, - "translateY": 3772400, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 35, - "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" - } - } - }, - { - "endIndex": 35, - "textRun": { - "content": "2b. What are the desired outcomes?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "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" - } - } - }, - { - "startIndex": 35, - "endIndex": 36, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_147", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.772, - "scaleY": 0.3428, - "translateX": 2348875, - "translateY": 800125, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "3. What’s a general approach for addressing this class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 78, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 78, - "textRun": { - "content": "[FARTHER]\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 78, - "endIndex": 79, - "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" - } - } - }, - { - "startIndex": 78, - "endIndex": 79, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_148", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 2348875, - "translateY": 1841375, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "FARTHER APPROACH #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "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" - } - } - }, - { - "startIndex": 21, - "endIndex": 22, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_149", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 3506875, - "translateY": 1834950, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_150", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 2348875, - "translateY": 2869775, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "FARTHER APPROACH #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_151", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 2348875, - "translateY": 3898175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "FARTHER APPROACH #3\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_152", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 3506875, - "translateY": 2869775, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_153", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 3506875, - "translateY": 3898175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #3\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_154", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.772, - "scaleY": 0.3428, - "translateX": 4664875, - "translateY": 800125, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "4. What’s a general approach for addressing this class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 77, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 77, - "textRun": { - "content": "[CLOSER]\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_155", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 4664875, - "translateY": 1841375, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "CLOSER APPROACH #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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" - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "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" - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_156", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 5822875, - "translateY": 1834950, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_157", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 4664875, - "translateY": 2869775, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "CLOSER APPROACH #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_158", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 4664875, - "translateY": 3898175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "CLOSER APPROACH #3\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_159", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 5822875, - "translateY": 2869775, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_160", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.386, - "scaleY": 0.3428, - "translateX": 5822875, - "translateY": 3898175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #3\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_161", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6683, - "scaleY": 0.2128, - "translateX": 51775, - "translateY": 506200, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "Class of Problems & Desired Outcomes\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_162", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.544, - "scaleY": 0.098, - "translateX": 2348875, - "translateY": 506125, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 29, - "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" - } - } - }, - { - "endIndex": 29, - "textRun": { - "content": "Why Existing Approaches Fail\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_163", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6416, - "scaleY": 0.098, - "translateX": 7137700, - "translateY": 506200, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "New Understanding\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_164", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6416, - "scaleY": 0.6242, - "translateX": 7137700, - "translateY": 879375, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 38, - "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" - } - } - }, - { - "endIndex": 38, - "textRun": { - "content": "5a. What new understanding is needed?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gf266c01b2a_0_7", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6416, - "scaleY": 0.6242, - "translateX": 7137700, - "translateY": 3058650, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "5b. Your Research Question", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_142:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_166", - "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": "gcbd9fbfbdf_0_167", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_167" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_168", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_169", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 3.0579, - "scaleY": 0.1909, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 23, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Approach Tree [Part 2]\n", - "style": { - "bold": true, - "fontSize": { - "magnitude": 9, - "unit": "PT" - } - } - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p4_i0" - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_170", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2357, - "scaleY": 0.3428, - "translateX": 73200, - "translateY": 1973150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 56, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "6b. What are relevant theories + principles it applies?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "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" - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_171", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2357, - "scaleY": 0.3428, - "translateX": 73200, - "translateY": 902175, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 38, - "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" - } - } - }, - { - "endIndex": 38, - "textRun": { - "content": "6a. What is your conceptual approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 38, - "endIndex": 39, - "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" - } - } - }, - { - "startIndex": 38, - "endIndex": 39, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_172", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2357, - "scaleY": 0.3428, - "translateX": 73200, - "translateY": 4115100, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 59, - "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" - } - } - }, - { - "endIndex": 58, - "textRun": { - "content": "6d. What’s the new conceptual understanding + implication?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 58, - "endIndex": 59, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_173", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.8306, - "scaleY": 0.3428, - "translateX": 4153275, - "translateY": 1017725, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 68, - "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" - } - } - }, - { - "endIndex": 68, - "textRun": { - "content": "7. What’s the technical need for realizing the conceptual approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "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" - } - } - }, - { - "startIndex": 68, - "endIndex": 69, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_174", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.4153, - "scaleY": 0.3428, - "translateX": 4153275, - "translateY": 2049340.63, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "EXISTING TECH APPROACH #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "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" - } - } - }, - { - "startIndex": 26, - "endIndex": 27, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "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" - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_175", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.4153, - "scaleY": 0.3428, - "translateX": 5399137.715, - "translateY": 2049340.63, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #1\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_176", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.4153, - "scaleY": 0.3428, - "translateX": 4153275, - "translateY": 3080956.2600000002, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 26, - "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" - } - } - }, - { - "endIndex": 26, - "textRun": { - "content": "EXISTING TECH APPROACH #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_177", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.8306, - "scaleY": 0.3428, - "translateX": 4153275, - "translateY": 4109021.8800000004, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 53, - "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" - } - } - }, - { - "endIndex": 53, - "textRun": { - "content": "Given these obstacles, what new technique is needed?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_178", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.4153, - "scaleY": 0.3428, - "translateX": 5399137.715, - "translateY": 3080956.2600000002, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "OBSTACLES FACED #2\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_179", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.642, - "scaleY": 0.098, - "translateX": 73200, - "translateY": 529450, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Conceptual Approach\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_180", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.544, - "scaleY": 0.098, - "translateX": 4153275, - "translateY": 723725, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "Technical Approach\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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_181", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2357, - "scaleY": 0.3428, - "translateX": 73200, - "translateY": 3044125, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 63, - "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" - } - } - }, - { - "endIndex": 63, - "textRun": { - "content": "6c. What’s your research argument for why this approach works?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 63, - "endIndex": 64, - "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" - } - } - }, - { - "startIndex": 63, - "endIndex": 64, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_182", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.6172, - "scaleY": 0.2226, - "translateX": 4151775, - "translateY": 55925, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "5b. Your Research Question\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_183", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7861, - "scaleY": 0.3428, - "translateX": 6645000.4275, - "translateY": 2049340.63, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 58, - "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" - } - } - }, - { - "endIndex": 58, - "textRun": { - "content": "7b. What are relevant technical ideas+methods it applies?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 58, - "endIndex": 59, - "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" - } - } - }, - { - "startIndex": 58, - "endIndex": 59, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_184", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7861, - "scaleY": 0.3428, - "translateX": 6645000.4275, - "translateY": 1017725, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "7a. What is your technical approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "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" - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_185", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7861, - "scaleY": 0.3428, - "translateX": 6645000.4275, - "translateY": 4109021.8800000004, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 70, - "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" - } - } - }, - { - "endIndex": 69, - "textRun": { - "content": "7d. How does this technical approach realize the conceptual approach?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 69, - "endIndex": 70, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gcbd9fbfbdf_0_186", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7861, - "scaleY": 0.3428, - "translateX": 6645000.4275, - "translateY": 3080956.2600000002, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 64, - "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" - } - } - }, - { - "endIndex": 64, - "textRun": { - "content": "7c. What’s your technical argument for why this approach works?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 64, - "endIndex": 65, - "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" - } - } - }, - { - "startIndex": 64, - "endIndex": 65, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ], - "lists": { - "kix.xged91x4saz8": { - "listId": "kix.xged91x4saz8", - "nestingLevel": { - "0": { - "bulletStyle": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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" - }, - "shadow": { - "type": "OUTER", - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 19050, - "unit": "EMU" - }, - "alignment": "BOTTOM_LEFT", - "blurRadius": { - "magnitude": 38100, - "unit": "EMU" - }, - "color": { - "rgbColor": {} - }, - "alpha": 0.5, - "rotateWithShape": false, - "propertyState": "NOT_RENDERED" - }, - "contentAlignment": "TOP", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gcbd9fbfbdf_0_168:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gcbd9fbfbdf_0_187", - "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": "gcbd9fbfbdf_0_188", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gcbd9fbfbdf_0_188" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gf296502525_0_7", - "pageElements": [ - { - "objectId": "gf296502525_0_8", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 347827.5, - "unit": "EMU" - }, - "table": { - "rows": 5, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 265075, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 28, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Practical Problem Statement", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 27, - "endIndex": 28, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 16, - "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" - } - } - }, - { - "endIndex": 16, - "textRun": { - "content": "Design Argument\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 27, - "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" - } - } - }, - { - "endIndex": 27, - "textRun": { - "content": "Interface/System Arguments\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Empirical Findings", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 18, - "endIndex": 19, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 265075, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1594600, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1594600, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 265075, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 18, - "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" - } - } - }, - { - "endIndex": 17, - "textRun": { - "content": "Class of Problems", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 17, - "endIndex": 18, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 20, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Conceptual Approach\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 19, - "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" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "Technical Approach\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 21, - "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" - } - } - }, - { - "endIndex": 20, - "textRun": { - "content": "Theoretical Findings", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 20, - "endIndex": 21, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 265075, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1434075, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1434075, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1236875, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 4 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "✅/❌ Is it clear how your practical problem statement is an instance of the class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 199, - "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" - } - } - }, - { - "startIndex": 95, - "endIndex": 199, - "textRun": { - "content": "✅/❌ Is your class of problems sufficiently broad to include problems other than your practical problem?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 199, - "endIndex": 200, - "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" - } - } - }, - { - "startIndex": 199, - "endIndex": 200, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 200, - "endIndex": 354, - "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" - } - } - }, - { - "startIndex": 200, - "endIndex": 354, - "textRun": { - "content": "✅/❌ Is your class of problems appropriately scoped (not too broad), i.e., does your conceptual and technical approach solve *all* problems in this class?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 85, - "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" - } - } - }, - { - "endIndex": 85, - "textRun": { - "content": "✅/❌ Is it clear how your design argument is an instance of your conceptual approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "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" - } - } - }, - { - "startIndex": 85, - "endIndex": 86, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 86, - "endIndex": 181, - "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" - } - } - }, - { - "startIndex": 86, - "endIndex": 181, - "textRun": { - "content": "✅/❌ Does your conceptual approach explain how it addresses the class of problems in a new way?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "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" - } - } - }, - { - "startIndex": 181, - "endIndex": 182, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 182, - "endIndex": 287, - "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" - } - } - }, - { - "startIndex": 182, - "endIndex": 287, - "textRun": { - "content": "✅/❌ Does your design argument explain how it overcomes obstacles that prior approaches do not or cannot?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 94, - "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" - } - } - }, - { - "endIndex": 94, - "textRun": { - "content": "✅/❌ Is it clear how your interface/system argument is an instance of your technical approach?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "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" - } - } - }, - { - "startIndex": 94, - "endIndex": 95, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 95, - "endIndex": 196, - "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" - } - } - }, - { - "startIndex": 95, - "endIndex": 196, - "textRun": { - "content": "✅/❌ Does your technical approach realize (i.e., make possible) the conceptual approach in a new way?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 196, - "endIndex": 197, - "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" - } - } - }, - { - "startIndex": 196, - "endIndex": 197, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 197, - "endIndex": 302, - "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" - } - } - }, - { - "startIndex": 197, - "endIndex": 302, - "textRun": { - "content": "✅/❌ Is it clear how your technical approach can be implemented to broadly address the class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 241, - "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" - } - } - }, - { - "endIndex": 241, - "textRun": { - "content": "✅/❌ Is it clear how your empirical findings imply your theoretical findings? That is, are they sufficient for showing that your conceptual/technical approach works on this problem, and suggest that it might, for the whole class of problems?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 241, - "endIndex": 242, - "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" - } - } - }, - { - "startIndex": 241, - "endIndex": 242, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 242, - "endIndex": 384, - "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" - } - } - }, - { - "startIndex": 242, - "endIndex": 384, - "textRun": { - "content": "✅/❌ Does your empirical findings clearly prove the effectiveness of your design/interface/system arguments for solving the practical problem?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 384, - "endIndex": 385, - "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" - } - } - }, - { - "startIndex": 384, - "endIndex": 385, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 7, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1236875, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 5 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 5, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 5, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 5, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 4, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gf296502525_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.524, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 24, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Mysore Template: 8-Pack", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 24, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gf296502525_0_10", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gf296502525_0_7:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gf296502525_0_11", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gf296502525_0_12", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gf296502525_0_12" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gf266c01b2a_0_8", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_9", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.2497, - "scaleY": 1.3636, - "translateX": 490250, - "translateY": 450150, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 18, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "endIndex": 18, - "textRun": { - "content": "Conceptual Canvas\n", - "style": { - "bold": true - } - } - }, - { - "startIndex": 18, - "endIndex": 54, - "paragraphMarker": { - "style": { - "alignment": "START", - "direction": "LEFT_TO_RIGHT" - } - } - }, - { - "startIndex": 18, - "endIndex": 54, - "textRun": { - "content": "Takeaways and Revised Understanding\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "INHERIT" - }, - "outline": { - "propertyState": "INHERIT" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p8_i0" - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p8", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gf266c01b2a_0_8:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_10", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381301.345, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gf266c01b2a_0_11", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gf266c01b2a_0_11" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gf266c01b2a_0_12", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_14", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.8194, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 57, - "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" - } - } - }, - { - "endIndex": 56, - "textRun": { - "content": "Mysore Template: Understanding your Conceptual Takeaways", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 56, - "endIndex": 57, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gf266c01b2a_0_13", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 4, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "Evidence in Support of your Approach", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 37, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 237, - "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" - } - } - }, - { - "startIndex": 37, - "endIndex": 236, - "textRun": { - "content": "In what ways did the conceptual or technical argument effectively support solving your practical problem? How have you established the usefulness of the conceptual approach on this practical problem?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 236, - "endIndex": 237, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 41, - "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" - } - } - }, - { - "endIndex": 40, - "textRun": { - "content": "Generalizing or Extending the Approaches", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 40, - "endIndex": 41, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 41, - "endIndex": 254, - "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" - } - } - }, - { - "startIndex": 41, - "endIndex": 253, - "textRun": { - "content": "How generalizable is the conceptual or technical approach? In what ways does your takeaways and findings inform questions one may have about how it can be used/extended to solve the class of problems of interest?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 253, - "endIndex": 254, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 10, - "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" - } - } - }, - { - "endIndex": 10, - "textRun": { - "content": "Obstacles\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 10, - "endIndex": 217, - "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" - } - } - }, - { - "startIndex": 10, - "endIndex": 217, - "textRun": { - "content": "In what ways did you find the conceptual or technical arguments limiting? What new obstacles to realizing the concept are discovered in applying your conceptual/technical arguments on the practical problem?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 23, - "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" - } - } - }, - { - "endIndex": 23, - "textRun": { - "content": "Limitations of Testing\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 23, - "endIndex": 120, - "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" - } - } - }, - { - "startIndex": 23, - "endIndex": 120, - "textRun": { - "content": "Which parts of your conceptual approach couldn’t actually be tested with the data you collected?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2554400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2554400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2286000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 4 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gf266c01b2a_0_15", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gf266c01b2a_0_12:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_16", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gf266c01b2a_0_17", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gf266c01b2a_0_17" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "gf266c01b2a_0_18", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_19", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1, - "scaleY": 1, - "translateY": 331502.5, - "unit": "EMU" - }, - "table": { - "rows": 3, - "columns": 3, - "tableRows": [ - { - "rowHeight": { - "magnitude": 565625, - "unit": "EMU" - }, - "tableCells": [ - { - "location": {}, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 38, - "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" - } - } - }, - { - "endIndex": 37, - "textRun": { - "content": "New directions: Conceptual Approaches", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 38, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 38, - "endIndex": 154, - "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" - } - } - }, - { - "startIndex": 38, - "endIndex": 153, - "textRun": { - "content": "Based on the revised understanding, what new research questions/directions may you pursue on conceptual approaches?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 153, - "endIndex": 154, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 37, - "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" - } - } - }, - { - "endIndex": 36, - "textRun": { - "content": "New directions: Technical Approaches", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 36, - "endIndex": 37, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 37, - "endIndex": 152, - "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" - } - } - }, - { - "startIndex": 37, - "endIndex": 151, - "textRun": { - "content": "Based on the revised understanding, what new research questions/directions may you pursue on technical approaches?", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - }, - { - "startIndex": 151, - "endIndex": 152, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "endIndex": 33, - "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" - } - } - }, - { - "endIndex": 33, - "textRun": { - "content": "New direction: Class of Problems\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 33, - "endIndex": 157, - "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" - } - } - }, - { - "startIndex": 33, - "endIndex": 157, - "textRun": { - "content": "Based on the revised understanding, what new research questions/directions may you pursue on the class of problems studied?\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": true, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 565625, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 2554400, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 2554400, - "unit": "EMU" - } - } - }, - { - "rowHeight": { - "magnitude": 1691975, - "unit": "EMU" - }, - "tableCells": [ - { - "location": { - "rowIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "rowSpan": 1, - "columnSpan": 1, - "text": { - "textElements": [ - { - "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" - } - } - }, - { - "endIndex": 5, - "textRun": { - "content": "✅/❌ \n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 6, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 400 - } - } - } - } - ] - }, - "tableCellProperties": { - "tableCellBackgroundFill": { - "propertyState": "NOT_RENDERED", - "solidFill": { - "color": { - "rgbColor": { - "red": 0.8, - "green": 0.8, - "blue": 0.8 - } - }, - "alpha": 1 - } - }, - "contentAlignment": "TOP" - } - } - ], - "tableRowProperties": { - "minRowHeight": { - "magnitude": 1691975, - "unit": "EMU" - } - } - } - ], - "tableColumns": [ - { - "columnWidth": { - "magnitude": 3044025, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 2965800, - "unit": "EMU" - } - }, - { - "columnWidth": { - "magnitude": 3044000, - "unit": "EMU" - } - } - ], - "horizontalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 3, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ], - "verticalBorderRows": [ - { - "tableBorderCells": [ - { - "location": {}, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 1, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - }, - { - "tableBorderCells": [ - { - "location": { - "rowIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 1 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 2 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - }, - { - "location": { - "rowIndex": 2, - "columnIndex": 3 - }, - "tableBorderProperties": { - "tableBorderFill": { - "solidFill": { - "color": { - "rgbColor": { - "red": 0.61960787, - "green": 0.61960787, - "blue": 0.61960787 - } - }, - "alpha": 1 - } - }, - "weight": { - "magnitude": 9525, - "unit": "EMU" - }, - "dashStyle": "SOLID" - } - } - ] - } - ] - } - }, - { - "objectId": "gf266c01b2a_0_20", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.8194, - "scaleY": 0.1105, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 50, - "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" - } - } - }, - { - "endIndex": 50, - "textRun": { - "content": "Mysore Template: Revised Conceptual Understanding\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "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" - } - } - }, - { - "startIndex": 50, - "endIndex": 51, - "textRun": { - "content": "\n", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "gf266c01b2a_0_21", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.7621, - "scaleY": 0.1105, - "translateX": 6857575, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 20, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "endIndex": 19, - "textRun": { - "content": "[your name(s) here]", - "style": { - "backgroundColor": {}, - "foregroundColor": { - "opaqueColor": { - "rgbColor": {} - } - }, - "bold": true, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 12, - "unit": "PT" - }, - "baselineOffset": "NONE", - "smallCaps": false, - "strikethrough": false, - "underline": false, - "weightedFontFamily": { - "fontFamily": "Arial", - "weight": 700 - } - } - } - }, - { - "startIndex": 19, - "endIndex": 20, - "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 - } - } - } - } - ] - }, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - } - ], - "slideProperties": { - "layoutObjectId": "p4", - "masterObjectId": "simple-light-2", - "notesPage": { - "objectId": "gf266c01b2a_0_18:notes", - "pageType": "NOTES", - "pageElements": [ - { - "objectId": "gf266c01b2a_0_22", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.032, - "scaleY": 1.143, - "translateX": 381297.595, - "translateY": 685800, - "unit": "EMU" - }, - "shape": { - "shapeProperties": { - "outline": { - "propertyState": "INHERIT" - } - }, - "placeholder": { - "type": "SLIDE_IMAGE", - "parentObjectId": "n:slide" - } - } - }, - { - "objectId": "gf266c01b2a_0_23", - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "index": 1, - "parentObjectId": "n:text" - } - } - } - ], - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - }, - "notesProperties": { - "speakerNotesObjectId": "gf266c01b2a_0_23" - } - } - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - } - ], - "title": "Copy of New [NOT] Orchestration Scripting Environments Practical/Conceptual Research Canvas", - "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.8401999473571777, - "scaleY": 0.19089999794960022, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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": "COLLAPSE_LISTS" - }, - "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", - "autofit": { - "autofitType": "TEXT_AUTOFIT", - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE" - } - } - }, - { - "objectId": "p1_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8401999473571777, - "scaleY": 1.1388000249862671, - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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": 12, - "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": { - "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", - "autofit": { - "autofitType": "TEXT_AUTOFIT", - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY" - } - } - }, - { - "objectId": "p1_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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": "COLLAPSE_LISTS" - } - } - }, - { - "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", - "autofit": { - "autofitType": "TEXT_AUTOFIT", - "fontScale": 1 - } - }, - "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": 0.25882354, - "green": 0.52156866, - "blue": 0.95686275 - } - }, - { - "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.8401999473571777, - "scaleY": 0.6841999888420105, - "translateX": 311708.349609375, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "CENTERED_TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p2_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8401999473571777, - "scaleY": 0.26420000195503235, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SUBTITLE", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p2_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.28060001134872437, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p3_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.19089999794960022, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p4_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8401999473571777, - "scaleY": 1.1388000249862671, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p4_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.19089999794960022, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p5_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.333299994468689, - "scaleY": 1.1388000249862671, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p5_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.333299994468689, - "scaleY": 1.1388000249862671, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.19089999794960022, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p6_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.93599998950958252, - "scaleY": 0.25189998745918274, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p7_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.93599998950958252, - "scaleY": 1.0598000288009644, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p7_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.1226000785827637, - "scaleY": 1.3636000156402588, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p8_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.5240000486373901, - "scaleY": 1.7144999504089355, - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - } - } - }, - { - "objectId": "p9_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.3483999967575073, - "scaleY": 0.49410000443458557, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p9_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.3483999967575073, - "scaleY": 0.41170001029968262, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SUBTITLE", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p9_i3", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.2790000438690186, - "scaleY": 1.2316999435424805, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p9_i4", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.9996000528335571, - "scaleY": 0.20170000195503235, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p10_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.8401999473571777, - "scaleY": 0.65450000762939453, - "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", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "p11_i1", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.8401999473571777, - "scaleY": 0.43360000848770142, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "p11_i2", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "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.18289999663829803, - "scaleY": 0.13120000064373016, - "translateX": 8472457.8125, - "translateY": 4663216.796875, - "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" - }, - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SLIDE_NUMBER", - "parentObjectId": "p1_i2" - } - } - } - ], - "layoutProperties": { - "masterObjectId": "simple-light-2", - "name": "BLANK", - "displayName": "Blank" - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g110fcf6167b_6_181", - "pageType": "LAYOUT", - "pageElements": [ - { - "objectId": "g110fcf6167b_6_182", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.6289, - "scaleY": 0.3314, - "translateX": 628650, - "translateY": 273843.75, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "glyph": " ", - "bulletStyle": {} - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 8, - "glyph": " ", - "bulletStyle": {} - } - } - }, - { - "startIndex": 8, - "endIndex": 9, - "textRun": { - "content": "\n", - "style": {} - } - } - ], - "lists": { - "bodyPlaceholderListEntity": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": { - "0": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "1": { - "bulletStyle": {} - }, - "2": { - "bulletStyle": {} - }, - "3": { - "bulletStyle": {} - }, - "4": { - "bulletStyle": {} - }, - "5": { - "bulletStyle": {} - }, - "6": { - "bulletStyle": {} - }, - "7": { - "bulletStyle": {} - }, - "8": { - "bulletStyle": {} - } - } - } - } - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "MIDDLE", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "g110fcf6167b_6_183", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.6289, - "scaleY": 1.0878, - "translateX": 628650, - "translateY": 1369218.75, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 8, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 1, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 2, - "endIndex": 3, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 2, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 3, - "endIndex": 4, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 3, - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "startIndex": 3, - "endIndex": 4, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 4, - "endIndex": 5, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 4, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 5, - "endIndex": 6, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 5, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 5, - "endIndex": 6, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 6, - "endIndex": 7, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 6, - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "startIndex": 6, - "endIndex": 7, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 7, - "endIndex": 8, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 7, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 7, - "endIndex": 8, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 8, - "endIndex": 9, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 8, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 8, - "endIndex": 9, - "textRun": { - "content": "\n", - "style": {} - } - } - ], - "lists": { - "bodyPlaceholderListEntity": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": { - "0": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "1": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "2": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "3": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "4": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "5": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "6": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "7": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "8": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - } - } - } - } - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "TOP", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "g110fcf6167b_6_184", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6858, - "scaleY": 0.0913, - "translateX": 628650, - "translateY": 4767262.5, - "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": { - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "MIDDLE", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "placeholder": { - "type": "DATE_AND_TIME" - } - } - }, - { - "objectId": "g110fcf6167b_6_185", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.0287, - "scaleY": 0.0913, - "translateX": 3028950, - "translateY": 4767262.5, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "CENTER", - "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": { - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "NEVER_COLLAPSE" - }, - "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": "MIDDLE", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "placeholder": { - "type": "FOOTER" - } - } - }, - { - "objectId": "g110fcf6167b_6_186", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6858, - "scaleY": 0.0913, - "translateX": 6457950, - "translateY": 4767262.5, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 2, - "paragraphMarker": { - "style": { - "alignment": "END", - "indentStart": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "endIndex": 1, - "autoText": { - "type": "SLIDE_NUMBER", - "content": "#", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "MIDDLE", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SLIDE_NUMBER", - "parentObjectId": "p1_i2" - } - } - } - ], - "layoutProperties": { - "masterObjectId": "simple-light-2", - "name": "OBJECT", - "displayName": "Title and Content" - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - }, - { - "objectId": "g110fcf6167b_6_187", - "pageType": "LAYOUT", - "pageElements": [ - { - "objectId": "g110fcf6167b_6_188", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.6289, - "scaleY": 0.3314, - "translateX": 628650, - "translateY": 273843.75, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "glyph": " ", - "bulletStyle": {} - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "paragraphMarker": { - "style": { - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "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", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 8, - "glyph": " ", - "bulletStyle": {} - } - } - }, - { - "startIndex": 8, - "endIndex": 9, - "textRun": { - "content": "\n", - "style": {} - } - } - ], - "lists": { - "bodyPlaceholderListEntity": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": { - "0": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "1": { - "bulletStyle": {} - }, - "2": { - "bulletStyle": {} - }, - "3": { - "bulletStyle": {} - }, - "4": { - "bulletStyle": {} - }, - "5": { - "bulletStyle": {} - }, - "6": { - "bulletStyle": {} - }, - "7": { - "bulletStyle": {} - }, - "8": { - "bulletStyle": {} - } - } - } - } - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "MIDDLE", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "TITLE", - "parentObjectId": "p1_i0" - } - } - }, - { - "objectId": "g110fcf6167b_6_189", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 2.6289, - "scaleY": 1.0878, - "translateX": 628650, - "translateY": 1369218.75, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 8, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "endIndex": 1, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 1, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 2, - "endIndex": 3, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 2, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 2, - "endIndex": 3, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 3, - "endIndex": 4, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 3, - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "startIndex": 3, - "endIndex": 4, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 4, - "endIndex": 5, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 4, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 4, - "endIndex": 5, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 5, - "endIndex": 6, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 5, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 5, - "endIndex": 6, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 6, - "endIndex": 7, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 6, - "glyph": "●", - "bulletStyle": {} - } - } - }, - { - "startIndex": 6, - "endIndex": 7, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 7, - "endIndex": 8, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 7, - "glyph": "○", - "bulletStyle": {} - } - } - }, - { - "startIndex": 7, - "endIndex": 8, - "textRun": { - "content": "\n", - "style": {} - } - }, - { - "startIndex": 8, - "endIndex": 9, - "paragraphMarker": { - "style": { - "lineSpacing": 90, - "alignment": "START", - "spaceAbove": { - "magnitude": 4, - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - }, - "bullet": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": 8, - "glyph": "■", - "bulletStyle": {} - } - } - }, - { - "startIndex": 8, - "endIndex": 9, - "textRun": { - "content": "\n", - "style": {} - } - } - ], - "lists": { - "bodyPlaceholderListEntity": { - "listId": "bodyPlaceholderListEntity", - "nestingLevel": { - "0": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "1": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "2": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "3": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "4": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "5": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "6": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "7": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - }, - "8": { - "bulletStyle": { - "foregroundColor": { - "opaqueColor": { - "themeColor": "DARK1" - } - }, - "fontSize": { - "magnitude": 14, - "unit": "PT" - } - } - } - } - } - } - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "TOP", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "BODY", - "parentObjectId": "p1_i1" - } - } - }, - { - "objectId": "g110fcf6167b_6_190", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6858, - "scaleY": 0.0913, - "translateX": 628650, - "translateY": 4767262.5, - "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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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": "MIDDLE", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "placeholder": { - "type": "DATE_AND_TIME" - } - } - }, - { - "objectId": "g110fcf6167b_6_191", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 1.0287, - "scaleY": 0.0913, - "translateX": 3028950, - "translateY": 4767262.5, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 1, - "paragraphMarker": { - "style": { - "lineSpacing": 100, - "alignment": "CENTER", - "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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": 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": { - "rgbColor": {} - } - }, - "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": { - "rgbColor": {} - } - }, - "bold": false, - "italic": false, - "fontFamily": "Arial", - "fontSize": { - "magnitude": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 14, - "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": 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": "MIDDLE", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "placeholder": { - "type": "FOOTER" - } - } - }, - { - "objectId": "g110fcf6167b_6_192", - "size": { - "width": { - "magnitude": 3000000, - "unit": "EMU" - }, - "height": { - "magnitude": 3000000, - "unit": "EMU" - } - }, - "transform": { - "scaleX": 0.6858, - "scaleY": 0.0913, - "translateX": 6457950, - "translateY": 4767262.5, - "unit": "EMU" - }, - "shape": { - "shapeType": "TEXT_BOX", - "text": { - "textElements": [ - { - "endIndex": 2, - "paragraphMarker": { - "style": { - "alignment": "END", - "indentStart": { - "unit": "PT" - }, - "spaceAbove": { - "unit": "PT" - }, - "indentFirstLine": { - "unit": "PT" - }, - "direction": "LEFT_TO_RIGHT", - "spacingMode": "NEVER_COLLAPSE" - } - } - }, - { - "endIndex": 1, - "autoText": { - "type": "SLIDE_NUMBER", - "content": "#", - "style": {} - } - }, - { - "startIndex": 1, - "endIndex": 2, - "textRun": { - "content": "\n", - "style": {} - } - } - ] - }, - "shapeProperties": { - "shapeBackgroundFill": { - "propertyState": "NOT_RENDERED" - }, - "outline": { - "propertyState": "NOT_RENDERED" - }, - "shadow": { - "propertyState": "INHERIT" - }, - "contentAlignment": "MIDDLE", - "autofit": { - "fontScale": 1 - } - }, - "placeholder": { - "type": "SLIDE_NUMBER", - "parentObjectId": "p1_i2" - } - } - } - ], - "layoutProperties": { - "masterObjectId": "simple-light-2", - "name": "OBJECT_1", - "displayName": "Title and Content 1" - }, - "pageProperties": { - "pageBackgroundFill": { - "propertyState": "INHERIT" - } - } - } - ], - "locale": "en", - "revisionId": "4KXOeD4gTEhLWg", - "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", - "autofit": { - "autofitType": "NONE", - "fontScale": 1 - } - }, - "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 - } - } - ] - } - } - } -} diff --git a/lib/stopWords.js b/lib/stopWords.js new file mode 100644 index 0000000..9f5c53a --- /dev/null +++ b/lib/stopWords.js @@ -0,0 +1,327 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ENGLISH_STOP_WORDS = void 0; +exports.ENGLISH_STOP_WORDS = [ + "a", + "about", + "above", + "across", + "after", + "afterwards", + "again", + "against", + "all", + "almost", + "alone", + "along", + "already", + "also", + "although", + "always", + "am", + "among", + "amongst", + "amoungst", + "amount", + "an", + "and", + "another", + "any", + "anyhow", + "anyone", + "anything", + "anyway", + "anywhere", + "are", + "around", + "as", + "at", + "back", + "be", + "became", + "because", + "become", + "becomes", + "becoming", + "been", + "before", + "beforehand", + "behind", + "being", + "below", + "beside", + "besides", + "between", + "beyond", + "bill", + "both", + "bottom", + "but", + "by", + "call", + "can", + "cannot", + "cant", + "co", + "con", + "could", + "couldnt", + "cry", + "de", + "describe", + "detail", + "do", + "done", + "down", + "due", + "during", + "each", + "eg", + "eight", + "either", + "eleven", + "else", + "elsewhere", + "empty", + "enough", + "etc", + "even", + "ever", + "every", + "everyone", + "everything", + "everywhere", + "except", + "few", + "fifteen", + "fifty", + "fill", + "find", + "fire", + "first", + "five", + "for", + "former", + "formerly", + "forty", + "found", + "four", + "from", + "front", + "full", + "further", + "get", + "give", + "go", + "had", + "has", + "hasnt", + "have", + "he", + "hence", + "her", + "here", + "hereafter", + "hereby", + "herein", + "hereupon", + "hers", + "herself", + "him", + "himself", + "his", + "how", + "however", + "hundred", + "i", + "ie", + "if", + "in", + "inc", + "indeed", + "interest", + "into", + "is", + "it", + "its", + "itself", + "keep", + "last", + "latter", + "latterly", + "least", + "less", + "ltd", + "made", + "many", + "may", + "me", + "meanwhile", + "might", + "mill", + "mine", + "more", + "moreover", + "most", + "mostly", + "move", + "much", + "must", + "my", + "myself", + "name", + "namely", + "neither", + "never", + "nevertheless", + "next", + "nine", + "no", + "nobody", + "none", + "noone", + "nor", + "not", + "nothing", + "now", + "nowhere", + "of", + "off", + "often", + "on", + "once", + "one", + "only", + "onto", + "or", + "other", + "others", + "otherwise", + "our", + "ours", + "ourselves", + "out", + "over", + "own", + "part", + "per", + "perhaps", + "please", + "put", + "rather", + "re", + "same", + "see", + "seem", + "seemed", + "seeming", + "seems", + "serious", + "several", + "she", + "should", + "show", + "side", + "since", + "sincere", + "six", + "sixty", + "so", + "some", + "somehow", + "someone", + "something", + "sometime", + "sometimes", + "somewhere", + "still", + "such", + "system", + "take", + "ten", + "than", + "that", + "the", + "their", + "them", + "themselves", + "then", + "thence", + "there", + "thereafter", + "thereby", + "therefore", + "therein", + "thereupon", + "these", + "they", + "thick", + "thin", + "third", + "this", + "those", + "though", + "three", + "through", + "throughout", + "thru", + "thus", + "to", + "together", + "too", + "top", + "toward", + "towards", + "twelve", + "twenty", + "two", + "un", + "under", + "until", + "up", + "upon", + "us", + "very", + "via", + "was", + "we", + "well", + "were", + "what", + "whatever", + "when", + "whence", + "whenever", + "where", + "whereafter", + "whereas", + "whereby", + "wherein", + "whereupon", + "wherever", + "whether", + "which", + "while", + "whither", + "who", + "whoever", + "whole", + "whom", + "whose", + "why", + "will", + "with", + "within", + "without", + "would", + "yet", + "you", + "your", + "yours", + "yourself", + "yourselves", + "issue", + "doing", + "having", + "lot" +]; diff --git a/lib/stopWords.ts b/lib/stopWords.ts new file mode 100644 index 0000000..eb82161 --- /dev/null +++ b/lib/stopWords.ts @@ -0,0 +1,325 @@ +export const ENGLISH_STOP_WORDS = + [ + "a", + "about", + "above", + "across", + "after", + "afterwards", + "again", + "against", + "all", + "almost", + "alone", + "along", + "already", + "also", + "although", + "always", + "am", + "among", + "amongst", + "amoungst", + "amount", + "an", + "and", + "another", + "any", + "anyhow", + "anyone", + "anything", + "anyway", + "anywhere", + "are", + "around", + "as", + "at", + "back", + "be", + "became", + "because", + "become", + "becomes", + "becoming", + "been", + "before", + "beforehand", + "behind", + "being", + "below", + "beside", + "besides", + "between", + "beyond", + "bill", + "both", + "bottom", + "but", + "by", + "call", + "can", + "cannot", + "cant", + "co", + "con", + "could", + "couldnt", + "cry", + "de", + "describe", + "detail", + "do", + "done", + "down", + "due", + "during", + "each", + "eg", + "eight", + "either", + "eleven", + "else", + "elsewhere", + "empty", + "enough", + "etc", + "even", + "ever", + "every", + "everyone", + "everything", + "everywhere", + "except", + "few", + "fifteen", + "fifty", + "fill", + "find", + "fire", + "first", + "five", + "for", + "former", + "formerly", + "forty", + "found", + "four", + "from", + "front", + "full", + "further", + "get", + "give", + "go", + "had", + "has", + "hasnt", + "have", + "he", + "hence", + "her", + "here", + "hereafter", + "hereby", + "herein", + "hereupon", + "hers", + "herself", + "him", + "himself", + "his", + "how", + "however", + "hundred", + "i", + "ie", + "if", + "in", + "inc", + "indeed", + "interest", + "into", + "is", + "it", + "its", + "itself", + "keep", + "last", + "latter", + "latterly", + "least", + "less", + "ltd", + "made", + "many", + "may", + "me", + "meanwhile", + "might", + "mill", + "mine", + "more", + "moreover", + "most", + "mostly", + "move", + "much", + "must", + "my", + "myself", + "name", + "namely", + "neither", + "never", + "nevertheless", + "next", + "nine", + "no", + "nobody", + "none", + "noone", + "nor", + "not", + "nothing", + "now", + "nowhere", + "of", + "off", + "often", + "on", + "once", + "one", + "only", + "onto", + "or", + "other", + "others", + "otherwise", + "our", + "ours", + "ourselves", + "out", + "over", + "own", + "part", + "per", + "perhaps", + "please", + "put", + "rather", + "re", + "same", + "see", + "seem", + "seemed", + "seeming", + "seems", + "serious", + "several", + "she", + "should", + "show", + "side", + "since", + "sincere", + "six", + "sixty", + "so", + "some", + "somehow", + "someone", + "something", + "sometime", + "sometimes", + "somewhere", + "still", + "such", + "system", + "take", + "ten", + "than", + "that", + "the", + "their", + "them", + "themselves", + "then", + "thence", + "there", + "thereafter", + "thereby", + "therefore", + "therein", + "thereupon", + "these", + "they", + "thick", + "thin", + "third", + "this", + "those", + "though", + "three", + "through", + "throughout", + "thru", + "thus", + "to", + "together", + "too", + "top", + "toward", + "towards", + "twelve", + "twenty", + "two", + "un", + "under", + "until", + "up", + "upon", + "us", + "very", + "via", + "was", + "we", + "well", + "were", + "what", + "whatever", + "when", + "whence", + "whenever", + "where", + "whereafter", + "whereas", + "whereby", + "wherein", + "whereupon", + "wherever", + "whether", + "which", + "while", + "whither", + "who", + "whoever", + "whole", + "whom", + "whose", + "why", + "will", + "with", + "within", + "without", + "would", + "yet", + "you", + "your", + "yours", + "yourself", + "yourselves", + "issue", + "doing", + "having", + "lot" + ]; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..c58fb2d --- /dev/null +++ b/package-lock.json @@ -0,0 +1,9358 @@ +{ + "name": "orchestration-scripting-interfaces", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "@chakra-ui/react": "^2.8.2", + "@dnd-kit/core": "^6.1.0", + "@dnd-kit/sortable": "^8.0.0", + "@dnd-kit/utilities": "^3.2.2", + "@emotion/react": "^11.11.3", + "@emotion/server": "^11.11.0", + "@emotion/styled": "^11.11.0", + "@mantine/carousel": "^6.0.21", + "@mantine/core": "^6.0.21", + "@mantine/hooks": "^6.0.21", + "@mantine/next": "^6.0.21", + "@vygruppen/spor-accordion-react": "^1.0.1", + "blockly": "^10.3.1", + "dotenv": "^16.4.4", + "embla-carousel-react": "^7.1.0", + "framer-motion": "^11.0.5", + "lodash": "^4.17.21", + "ml-distance": "^4.0.1", + "mongo": "^0.1.0", + "mongoose": "^8.1.2", + "natural": "^6.12.0", + "next": "latest", + "p5": "^1.9.0", + "react": "18.2.0", + "react-beautiful-dnd": "^13.1.1", + "react-blockly": "^8.1.1", + "react-dom": "18.2.0", + "react-modal": "^3.16.1", + "react-sortable-hoc": "^2.0.0", + "reactstrap": "^9.2.2" + }, + "devDependencies": { + "@types/node": "20.11.17", + "@types/p5": "^1.7.6", + "@types/react": "18.2.55", + "@types/react-beautiful-dnd": "^13.1.8", + "@types/react-dom": "18.2.19", + "autoprefixer": "^10.4.17", + "eslint": "^8.56.0", + "eslint-config-next": "^14.1.0", + "eslint-config-prettier": "^9.1.0", + "postcss": "^8.4.35", + "prettier": "^3.2.5", + "tailwindcss": "^3.4.1", + "typescript": "^5.4.4" + }, + "engines": { + "node": ">18.x" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", + "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@chakra-ui/accordion": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.3.1.tgz", + "integrity": "sha512-FSXRm8iClFyU+gVaXisOSEw0/4Q+qZbFRiuhIAkVU6Boj0FxAMrlo9a8AV5TuF77rgaHytCdHk0Ng+cyUijrag==", + "license": "MIT", + "dependencies": { + "@chakra-ui/descendant": "3.1.0", + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-use-controllable-state": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/transition": "2.1.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "framer-motion": ">=4.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/alert": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.2.2.tgz", + "integrity": "sha512-jHg4LYMRNOJH830ViLuicjb3F+v6iriE/2G5T+Sd0Hna04nukNJ1MxUmBPE+vI22me2dIflfelu2v9wdB6Pojw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/spinner": "2.1.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/anatomy": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.2.2.tgz", + "integrity": "sha512-MV6D4VLRIHr4PkW4zMyqfrNS1mPlCTiCXwvYGtDFQYr+xHFfonhAuf9WjsSc0nyp2m0OdkSLnzmVKkZFLo25Tg==", + "license": "MIT" + }, + "node_modules/@chakra-ui/avatar": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.3.0.tgz", + "integrity": "sha512-8gKSyLfygnaotbJbDMHDiJoF38OHXUYVme4gGxZ1fLnQEdPVEaIWfH+NndIjOM0z8S+YEFnT9KyGMUtvPrBk3g==", + "license": "MIT", + "dependencies": { + "@chakra-ui/image": "2.1.0", + "@chakra-ui/react-children-utils": "2.0.6", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/breadcrumb": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.2.0.tgz", + "integrity": "sha512-4cWCG24flYBxjruRi4RJREWTGF74L/KzI2CognAW/d/zWR0CjiScuJhf37Am3LFbCySP6WSoyBOtTIoTA4yLEA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-children-utils": "2.0.6", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/breakpoint-utils": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.8.tgz", + "integrity": "sha512-Pq32MlEX9fwb5j5xx8s18zJMARNHlQZH2VH1RZgfgRDpp7DcEgtRW5AInfN5CfqdHLO1dGxA7I3MqEuL5JnIsA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/shared-utils": "2.0.5" + } + }, + "node_modules/@chakra-ui/button": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-2.1.0.tgz", + "integrity": "sha512-95CplwlRKmmUXkdEp/21VkEWgnwcx2TOBG6NfYlsuLBDHSLlo5FKIiE2oSi4zXc4TLcopGcWPNcm/NDaSC5pvA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/spinner": "2.1.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/card": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/card/-/card-2.2.0.tgz", + "integrity": "sha512-xUB/k5MURj4CtPAhdSoXZidUbm8j3hci9vnc+eZJVDqhDOShNlD6QeniQNRPRys4lWAQLCbFcrwL29C8naDi6g==", + "license": "MIT", + "dependencies": { + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/checkbox": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.3.2.tgz", + "integrity": "sha512-85g38JIXMEv6M+AcyIGLh7igNtfpAN6KGQFYxY9tBj0eWvWk4NKQxvqqyVta0bSAyIl1rixNIIezNpNWk2iO4g==", + "license": "MIT", + "dependencies": { + "@chakra-ui/form-control": "2.2.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-callback-ref": "2.1.0", + "@chakra-ui/react-use-controllable-state": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/react-use-safe-layout-effect": "2.1.0", + "@chakra-ui/react-use-update-effect": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/visually-hidden": "2.2.0", + "@zag-js/focus-visible": "0.16.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/clickable": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.1.0.tgz", + "integrity": "sha512-flRA/ClPUGPYabu+/GLREZVZr9j2uyyazCAUHAdrTUEdDYCr31SVGhgh7dgKdtq23bOvAQJpIJjw/0Bs0WvbXw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/close-button": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.1.1.tgz", + "integrity": "sha512-gnpENKOanKexswSVpVz7ojZEALl2x5qjLYNqSQGbxz+aP9sOXPfUS56ebyBrre7T7exuWGiFeRwnM0oVeGPaiw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/icon": "3.2.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/color-mode": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.2.0.tgz", + "integrity": "sha512-niTEA8PALtMWRI9wJ4LL0CSBDo8NBfLNp4GD6/0hstcm3IlbBHTVKxN6HwSaoNYfphDQLxCjT4yG+0BJA5tFpg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-safe-layout-effect": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/control-box": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.1.0.tgz", + "integrity": "sha512-gVrRDyXFdMd8E7rulL0SKeoljkLQiPITFnsyMO8EFHNZ+AHt5wK4LIguYVEq88APqAGZGfHFWXr79RYrNiE3Mg==", + "license": "MIT", + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/counter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.1.0.tgz", + "integrity": "sha512-s6hZAEcWT5zzjNz2JIWUBzRubo9la/oof1W7EKZVVfPYHERnl5e16FmBC79Yfq8p09LQ+aqFKm/etYoJMMgghw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/number-utils": "2.0.7", + "@chakra-ui/react-use-callback-ref": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/css-reset": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.3.0.tgz", + "integrity": "sha512-cQwwBy5O0jzvl0K7PLTLgp8ijqLPKyuEMiDXwYzl95seD3AoeuoCLyzZcJtVqaUZ573PiBdAbY/IlZcwDOItWg==", + "license": "MIT", + "peerDependencies": { + "@emotion/react": ">=10.0.35", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/descendant": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.1.0.tgz", + "integrity": "sha512-VxCIAir08g5w27klLyi7PVo8BxhW4tgU/lxQyujkmi4zx7hT9ZdrcQLAted/dAa+aSIZ14S1oV0Q9lGjsAdxUQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/dom-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.1.0.tgz", + "integrity": "sha512-ZmF2qRa1QZ0CMLU8M1zCfmw29DmPNtfjR9iTo74U5FPr3i1aoAh7fbJ4qAlZ197Xw9eAW28tvzQuoVWeL5C7fQ==", + "license": "MIT" + }, + "node_modules/@chakra-ui/editable": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-3.1.0.tgz", + "integrity": "sha512-j2JLrUL9wgg4YA6jLlbU88370eCRyor7DZQD9lzpY95tSOXpTljeg3uF9eOmDnCs6fxp3zDWIfkgMm/ExhcGTg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-callback-ref": "2.1.0", + "@chakra-ui/react-use-controllable-state": "2.1.0", + "@chakra-ui/react-use-focus-on-pointer-down": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/react-use-safe-layout-effect": "2.1.0", + "@chakra-ui/react-use-update-effect": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/event-utils": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.8.tgz", + "integrity": "sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw==", + "license": "MIT" + }, + "node_modules/@chakra-ui/focus-lock": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.1.0.tgz", + "integrity": "sha512-EmGx4PhWGjm4dpjRqM4Aa+rCWBxP+Rq8Uc/nAVnD4YVqkEhBkrPTpui2lnjsuxqNaZ24fIAZ10cF1hlpemte/w==", + "license": "MIT", + "dependencies": { + "@chakra-ui/dom-utils": "2.1.0", + "react-focus-lock": "^2.9.4" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/form-control": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.2.0.tgz", + "integrity": "sha512-wehLC1t4fafCVJ2RvJQT2jyqsAwX7KymmiGqBu7nQoQz8ApTkGABWpo/QwDh3F/dBLrouHDoOvGmYTqft3Mirw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/hooks": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.2.1.tgz", + "integrity": "sha512-RQbTnzl6b1tBjbDPf9zGRo9rf/pQMholsOudTxjy4i9GfTfz6kgp5ValGjQm2z7ng6Z31N1cnjZ1AlSzQ//ZfQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-utils": "2.0.12", + "@chakra-ui/utils": "2.0.15", + "compute-scroll-into-view": "3.0.3", + "copy-to-clipboard": "3.3.3" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/icon": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.2.0.tgz", + "integrity": "sha512-xxjGLvlX2Ys4H0iHrI16t74rG9EBcpFvJ3Y3B7KMQTrnW34Kf7Da/UC8J67Gtx85mTHW020ml85SVPKORWNNKQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/image": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-2.1.0.tgz", + "integrity": "sha512-bskumBYKLiLMySIWDGcz0+D9Th0jPvmX6xnRMs4o92tT3Od/bW26lahmV2a2Op2ItXeCmRMY+XxJH5Gy1i46VA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-safe-layout-effect": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/input": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-2.1.2.tgz", + "integrity": "sha512-GiBbb3EqAA8Ph43yGa6Mc+kUPjh4Spmxp1Pkelr8qtudpc3p2PJOOebLpd90mcqw8UePPa+l6YhhPtp6o0irhw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/form-control": "2.2.0", + "@chakra-ui/object-utils": "2.1.0", + "@chakra-ui/react-children-utils": "2.0.6", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/layout": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.3.1.tgz", + "integrity": "sha512-nXuZ6WRbq0WdgnRgLw+QuxWAHuhDtVX8ElWqcTK+cSMFg/52eVP47czYBE5F35YhnoW2XBwfNoNgZ7+e8Z01Rg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/breakpoint-utils": "2.0.8", + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/object-utils": "2.1.0", + "@chakra-ui/react-children-utils": "2.0.6", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/lazy-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.5.tgz", + "integrity": "sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg==", + "license": "MIT" + }, + "node_modules/@chakra-ui/live-region": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.1.0.tgz", + "integrity": "sha512-ZOxFXwtaLIsXjqnszYYrVuswBhnIHHP+XIgK1vC6DePKtyK590Wg+0J0slDwThUAd4MSSIUa/nNX84x1GMphWw==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/media-query": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.3.0.tgz", + "integrity": "sha512-IsTGgFLoICVoPRp9ykOgqmdMotJG0CnPsKvGQeSFOB/dZfIujdVb14TYxDU4+MURXry1MhJ7LzZhv+Ml7cr8/g==", + "license": "MIT", + "dependencies": { + "@chakra-ui/breakpoint-utils": "2.0.8", + "@chakra-ui/react-env": "3.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/menu": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.2.1.tgz", + "integrity": "sha512-lJS7XEObzJxsOwWQh7yfG4H8FzFPRP5hVPN/CL+JzytEINCSBvsCDHrYPQGp7jzpCi8vnTqQQGQe0f8dwnXd2g==", + "license": "MIT", + "dependencies": { + "@chakra-ui/clickable": "2.1.0", + "@chakra-ui/descendant": "3.1.0", + "@chakra-ui/lazy-utils": "2.0.5", + "@chakra-ui/popper": "3.1.0", + "@chakra-ui/react-children-utils": "2.0.6", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-use-animation-state": "2.1.0", + "@chakra-ui/react-use-controllable-state": "2.1.0", + "@chakra-ui/react-use-disclosure": "2.1.0", + "@chakra-ui/react-use-focus-effect": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/react-use-outside-click": "2.2.0", + "@chakra-ui/react-use-update-effect": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/transition": "2.1.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "framer-motion": ">=4.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/modal": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.3.1.tgz", + "integrity": "sha512-TQv1ZaiJMZN+rR9DK0snx/OPwmtaGH1HbZtlYt4W4s6CzyK541fxLRTjIXfEzIGpvNW+b6VFuFjbcR78p4DEoQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/close-button": "2.1.1", + "@chakra-ui/focus-lock": "2.1.0", + "@chakra-ui/portal": "2.1.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/transition": "2.1.0", + "aria-hidden": "^1.2.3", + "react-remove-scroll": "^2.5.6" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "framer-motion": ">=4.0.0", + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/@chakra-ui/number-input": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.1.2.tgz", + "integrity": "sha512-pfOdX02sqUN0qC2ysuvgVDiws7xZ20XDIlcNhva55Jgm095xjm8eVdIBfNm3SFbSUNxyXvLTW/YQanX74tKmuA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/counter": "2.1.0", + "@chakra-ui/form-control": "2.2.0", + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-callback-ref": "2.1.0", + "@chakra-ui/react-use-event-listener": "2.1.0", + "@chakra-ui/react-use-interval": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/react-use-safe-layout-effect": "2.1.0", + "@chakra-ui/react-use-update-effect": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/number-utils": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.7.tgz", + "integrity": "sha512-yOGxBjXNvLTBvQyhMDqGU0Oj26s91mbAlqKHiuw737AXHt0aPllOthVUqQMeaYLwLCjGMg0jtI7JReRzyi94Dg==", + "license": "MIT" + }, + "node_modules/@chakra-ui/object-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.1.0.tgz", + "integrity": "sha512-tgIZOgLHaoti5PYGPTwK3t/cqtcycW0owaiOXoZOcpwwX/vlVb+H1jFsQyWiiwQVPt9RkoSLtxzXamx+aHH+bQ==", + "license": "MIT" + }, + "node_modules/@chakra-ui/pin-input": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.1.0.tgz", + "integrity": "sha512-x4vBqLStDxJFMt+jdAHHS8jbh294O53CPQJoL4g228P513rHylV/uPscYUHrVJXRxsHfRztQO9k45jjTYaPRMw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/descendant": "3.1.0", + "@chakra-ui/react-children-utils": "2.0.6", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-use-controllable-state": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/popover": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.2.1.tgz", + "integrity": "sha512-K+2ai2dD0ljvJnlrzesCDT9mNzLifE3noGKZ3QwLqd/K34Ym1W/0aL1ERSynrcG78NKoXS54SdEzkhCZ4Gn/Zg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/close-button": "2.1.1", + "@chakra-ui/lazy-utils": "2.0.5", + "@chakra-ui/popper": "3.1.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-animation-state": "2.1.0", + "@chakra-ui/react-use-disclosure": "2.1.0", + "@chakra-ui/react-use-focus-effect": "2.1.0", + "@chakra-ui/react-use-focus-on-pointer-down": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "framer-motion": ">=4.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/popper": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.1.0.tgz", + "integrity": "sha512-ciDdpdYbeFG7og6/6J8lkTFxsSvwTdMLFkpVylAF6VNC22jssiWfquj2eyD4rJnzkRFPvIWJq8hvbfhsm+AjSg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@popperjs/core": "^2.9.3" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/portal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.1.0.tgz", + "integrity": "sha512-9q9KWf6SArEcIq1gGofNcFPSWEyl+MfJjEUg/un1SMlQjaROOh3zYr+6JAwvcORiX7tyHosnmWC3d3wI2aPSQg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-use-safe-layout-effect": "2.1.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/@chakra-ui/progress": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.2.0.tgz", + "integrity": "sha512-qUXuKbuhN60EzDD9mHR7B67D7p/ZqNS2Aze4Pbl1qGGZfulPW0PY8Rof32qDtttDQBkzQIzFGE8d9QpAemToIQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-context": "2.1.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/provider": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.4.2.tgz", + "integrity": "sha512-w0Tef5ZCJK1mlJorcSjItCSbyvVuqpvyWdxZiVQmE6fvSJR83wZof42ux0+sfWD+I7rHSfj+f9nzhNaEWClysw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/css-reset": "2.3.0", + "@chakra-ui/portal": "2.1.0", + "@chakra-ui/react-env": "3.1.0", + "@chakra-ui/system": "2.6.2", + "@chakra-ui/utils": "2.0.15" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0", + "@emotion/styled": "^11.0.0", + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/@chakra-ui/radio": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.1.2.tgz", + "integrity": "sha512-n10M46wJrMGbonaghvSRnZ9ToTv/q76Szz284gv4QUWvyljQACcGrXIONUnQ3BIwbOfkRqSk7Xl/JgZtVfll+w==", + "license": "MIT", + "dependencies": { + "@chakra-ui/form-control": "2.2.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5", + "@zag-js/focus-visible": "0.16.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-2.8.2.tgz", + "integrity": "sha512-Hn0moyxxyCDKuR9ywYpqgX8dvjqwu9ArwpIb9wHNYjnODETjLwazgNIliCVBRcJvysGRiV51U2/JtJVrpeCjUQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/accordion": "2.3.1", + "@chakra-ui/alert": "2.2.2", + "@chakra-ui/avatar": "2.3.0", + "@chakra-ui/breadcrumb": "2.2.0", + "@chakra-ui/button": "2.1.0", + "@chakra-ui/card": "2.2.0", + "@chakra-ui/checkbox": "2.3.2", + "@chakra-ui/close-button": "2.1.1", + "@chakra-ui/control-box": "2.1.0", + "@chakra-ui/counter": "2.1.0", + "@chakra-ui/css-reset": "2.3.0", + "@chakra-ui/editable": "3.1.0", + "@chakra-ui/focus-lock": "2.1.0", + "@chakra-ui/form-control": "2.2.0", + "@chakra-ui/hooks": "2.2.1", + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/image": "2.1.0", + "@chakra-ui/input": "2.1.2", + "@chakra-ui/layout": "2.3.1", + "@chakra-ui/live-region": "2.1.0", + "@chakra-ui/media-query": "3.3.0", + "@chakra-ui/menu": "2.2.1", + "@chakra-ui/modal": "2.3.1", + "@chakra-ui/number-input": "2.1.2", + "@chakra-ui/pin-input": "2.1.0", + "@chakra-ui/popover": "2.2.1", + "@chakra-ui/popper": "3.1.0", + "@chakra-ui/portal": "2.1.0", + "@chakra-ui/progress": "2.2.0", + "@chakra-ui/provider": "2.4.2", + "@chakra-ui/radio": "2.1.2", + "@chakra-ui/react-env": "3.1.0", + "@chakra-ui/select": "2.1.2", + "@chakra-ui/skeleton": "2.1.0", + "@chakra-ui/skip-nav": "2.1.0", + "@chakra-ui/slider": "2.1.0", + "@chakra-ui/spinner": "2.1.0", + "@chakra-ui/stat": "2.1.1", + "@chakra-ui/stepper": "2.3.1", + "@chakra-ui/styled-system": "2.9.2", + "@chakra-ui/switch": "2.1.2", + "@chakra-ui/system": "2.6.2", + "@chakra-ui/table": "2.1.0", + "@chakra-ui/tabs": "3.0.0", + "@chakra-ui/tag": "3.1.1", + "@chakra-ui/textarea": "2.1.2", + "@chakra-ui/theme": "3.3.1", + "@chakra-ui/theme-utils": "2.0.21", + "@chakra-ui/toast": "7.0.2", + "@chakra-ui/tooltip": "2.3.1", + "@chakra-ui/transition": "2.1.0", + "@chakra-ui/utils": "2.0.15", + "@chakra-ui/visually-hidden": "2.2.0" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0", + "@emotion/styled": "^11.0.0", + "framer-motion": ">=4.0.0", + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/@chakra-ui/react-children-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.6.tgz", + "integrity": "sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-context": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.1.0.tgz", + "integrity": "sha512-iahyStvzQ4AOwKwdPReLGfDesGG+vWJfEsn0X/NoGph/SkN+HXtv2sCfYFFR9k7bb+Kvc6YfpLlSuLvKMHi2+w==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-env": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-3.1.0.tgz", + "integrity": "sha512-Vr96GV2LNBth3+IKzr/rq1IcnkXv+MLmwjQH6C8BRtn3sNskgDFD5vLkVXcEhagzZMCh8FR3V/bzZPojBOyNhw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-safe-layout-effect": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-types/-/react-types-2.0.7.tgz", + "integrity": "sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-animation-state": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.1.0.tgz", + "integrity": "sha512-CFZkQU3gmDBwhqy0vC1ryf90BVHxVN8cTLpSyCpdmExUEtSEInSCGMydj2fvn7QXsz/za8JNdO2xxgJwxpLMtg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/dom-utils": "2.1.0", + "@chakra-ui/react-use-event-listener": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-callback-ref": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.1.0.tgz", + "integrity": "sha512-efnJrBtGDa4YaxDzDE90EnKD3Vkh5a1t3w7PhnRQmsphLy3g2UieasoKTlT2Hn118TwDjIv5ZjHJW6HbzXA9wQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-controllable-state": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.1.0.tgz", + "integrity": "sha512-QR/8fKNokxZUs4PfxjXuwl0fj/d71WPrmLJvEpCTkHjnzu7LnYvzoe2wB867IdooQJL0G1zBxl0Dq+6W1P3jpg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-callback-ref": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-disclosure": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.1.0.tgz", + "integrity": "sha512-Ax4pmxA9LBGMyEZJhhUZobg9C0t3qFE4jVF1tGBsrLDcdBeLR9fwOogIPY9Hf0/wqSlAryAimICbr5hkpa5GSw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-callback-ref": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-event-listener": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.1.0.tgz", + "integrity": "sha512-U5greryDLS8ISP69DKDsYcsXRtAdnTQT+jjIlRYZ49K/XhUR/AqVZCK5BkR1spTDmO9H8SPhgeNKI70ODuDU/Q==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-callback-ref": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-focus-effect": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.1.0.tgz", + "integrity": "sha512-xzVboNy7J64xveLcxTIJ3jv+lUJKDwRM7Szwn9tNzUIPD94O3qwjV7DDCUzN2490nSYDF4OBMt/wuDBtaR3kUQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/dom-utils": "2.1.0", + "@chakra-ui/react-use-event-listener": "2.1.0", + "@chakra-ui/react-use-safe-layout-effect": "2.1.0", + "@chakra-ui/react-use-update-effect": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-focus-on-pointer-down": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.1.0.tgz", + "integrity": "sha512-2jzrUZ+aiCG/cfanrolsnSMDykCAbv9EK/4iUyZno6BYb3vziucmvgKuoXbMPAzWNtwUwtuMhkby8rc61Ue+Lg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-event-listener": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-interval": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.1.0.tgz", + "integrity": "sha512-8iWj+I/+A0J08pgEXP1J1flcvhLBHkk0ln7ZvGIyXiEyM6XagOTJpwNhiu+Bmk59t3HoV/VyvyJTa+44sEApuw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-callback-ref": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-latest-ref": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.1.0.tgz", + "integrity": "sha512-m0kxuIYqoYB0va9Z2aW4xP/5b7BzlDeWwyXCH6QpT2PpW3/281L3hLCm1G0eOUcdVlayqrQqOeD6Mglq+5/xoQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-merge-refs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.1.0.tgz", + "integrity": "sha512-lERa6AWF1cjEtWSGjxWTaSMvneccnAVH4V4ozh8SYiN9fSPZLlSG3kNxfNzdFvMEhM7dnP60vynF7WjGdTgQbQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-outside-click": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.2.0.tgz", + "integrity": "sha512-PNX+s/JEaMneijbgAM4iFL+f3m1ga9+6QK0E5Yh4s8KZJQ/bLwZzdhMz8J/+mL+XEXQ5J0N8ivZN28B82N1kNw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-callback-ref": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-pan-event": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.1.0.tgz", + "integrity": "sha512-xmL2qOHiXqfcj0q7ZK5s9UjTh4Gz0/gL9jcWPA6GVf+A0Od5imEDa/Vz+533yQKWiNSm1QGrIj0eJAokc7O4fg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/event-utils": "2.0.8", + "@chakra-ui/react-use-latest-ref": "2.1.0", + "framesync": "6.1.2" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-previous": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.1.0.tgz", + "integrity": "sha512-pjxGwue1hX8AFcmjZ2XfrQtIJgqbTF3Qs1Dy3d1krC77dEsiCUbQ9GzOBfDc8pfd60DrB5N2tg5JyHbypqh0Sg==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-safe-layout-effect": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.1.0.tgz", + "integrity": "sha512-Knbrrx/bcPwVS1TorFdzrK/zWA8yuU/eaXDkNj24IrKoRlQrSBFarcgAEzlCHtzuhufP3OULPkELTzz91b0tCw==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-size": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.1.0.tgz", + "integrity": "sha512-tbLqrQhbnqOjzTaMlYytp7wY8BW1JpL78iG7Ru1DlV4EWGiAmXFGvtnEt9HftU0NJ0aJyjgymkxfVGI55/1Z4A==", + "license": "MIT", + "dependencies": { + "@zag-js/element-size": "0.10.5" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-timeout": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.1.0.tgz", + "integrity": "sha512-cFN0sobKMM9hXUhyCofx3/Mjlzah6ADaEl/AXl5Y+GawB5rgedgAcu2ErAgarEkwvsKdP6c68CKjQ9dmTQlJxQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-use-callback-ref": "2.1.0" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-use-update-effect": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.1.0.tgz", + "integrity": "sha512-ND4Q23tETaR2Qd3zwCKYOOS1dfssojPLJMLvUtUbW5M9uW1ejYWgGUobeAiOVfSplownG8QYMmHTP86p/v0lbA==", + "license": "MIT", + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/react-utils": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.12.tgz", + "integrity": "sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/utils": "2.0.15" + }, + "peerDependencies": { + "react": ">=18" + } + }, + "node_modules/@chakra-ui/select": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/select/-/select-2.1.2.tgz", + "integrity": "sha512-ZwCb7LqKCVLJhru3DXvKXpZ7Pbu1TDZ7N0PdQ0Zj1oyVLJyrpef1u9HR5u0amOpqcH++Ugt0f5JSmirjNlctjA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/form-control": "2.2.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/shared-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz", + "integrity": "sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q==", + "license": "MIT" + }, + "node_modules/@chakra-ui/skeleton": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.1.0.tgz", + "integrity": "sha512-JNRuMPpdZGd6zFVKjVQ0iusu3tXAdI29n4ZENYwAJEMf/fN0l12sVeirOxkJ7oEL0yOx2AgEYFSKdbcAgfUsAQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/media-query": "3.3.0", + "@chakra-ui/react-use-previous": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/skip-nav": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/skip-nav/-/skip-nav-2.1.0.tgz", + "integrity": "sha512-Hk+FG+vadBSH0/7hwp9LJnLjkO0RPGnx7gBJWI4/SpoJf3e4tZlWYtwGj0toYY4aGKl93jVghuwGbDBEMoHDug==", + "license": "MIT", + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/slider": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.1.0.tgz", + "integrity": "sha512-lUOBcLMCnFZiA/s2NONXhELJh6sY5WtbRykPtclGfynqqOo47lwWJx+VP7xaeuhDOPcWSSecWc9Y1BfPOCz9cQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/number-utils": "2.0.7", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-callback-ref": "2.1.0", + "@chakra-ui/react-use-controllable-state": "2.1.0", + "@chakra-ui/react-use-latest-ref": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/react-use-pan-event": "2.1.0", + "@chakra-ui/react-use-size": "2.1.0", + "@chakra-ui/react-use-update-effect": "2.1.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/spinner": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.1.0.tgz", + "integrity": "sha512-hczbnoXt+MMv/d3gE+hjQhmkzLiKuoTo42YhUG7Bs9OSv2lg1fZHW1fGNRFP3wTi6OIbD044U1P9HK+AOgFH3g==", + "license": "MIT", + "dependencies": { + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/stat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.1.1.tgz", + "integrity": "sha512-LDn0d/LXQNbAn2KaR3F1zivsZCewY4Jsy1qShmfBMKwn6rI8yVlbvu6SiA3OpHS0FhxbsZxQI6HefEoIgtqY6Q==", + "license": "MIT", + "dependencies": { + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/stepper": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/stepper/-/stepper-2.3.1.tgz", + "integrity": "sha512-ky77lZbW60zYkSXhYz7kbItUpAQfEdycT0Q4bkHLxfqbuiGMf8OmgZOQkOB9uM4v0zPwy2HXhe0vq4Dd0xa55Q==", + "license": "MIT", + "dependencies": { + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/styled-system": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.9.2.tgz", + "integrity": "sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg==", + "license": "MIT", + "dependencies": { + "@chakra-ui/shared-utils": "2.0.5", + "csstype": "^3.1.2", + "lodash.mergewith": "4.6.2" + } + }, + "node_modules/@chakra-ui/switch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.1.2.tgz", + "integrity": "sha512-pgmi/CC+E1v31FcnQhsSGjJnOE2OcND4cKPyTE+0F+bmGm48Q/b5UmKD9Y+CmZsrt/7V3h8KNczowupfuBfIHA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/checkbox": "2.3.2", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "framer-motion": ">=4.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/system": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/system/-/system-2.6.2.tgz", + "integrity": "sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/color-mode": "2.2.0", + "@chakra-ui/object-utils": "2.1.0", + "@chakra-ui/react-utils": "2.0.12", + "@chakra-ui/styled-system": "2.9.2", + "@chakra-ui/theme-utils": "2.0.21", + "@chakra-ui/utils": "2.0.15", + "react-fast-compare": "3.2.2" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0", + "@emotion/styled": "^11.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/table": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/table/-/table-2.1.0.tgz", + "integrity": "sha512-o5OrjoHCh5uCLdiUb0Oc0vq9rIAeHSIRScc2ExTC9Qg/uVZl2ygLrjToCaKfaaKl1oQexIeAcZDKvPG8tVkHyQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/tabs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-3.0.0.tgz", + "integrity": "sha512-6Mlclp8L9lqXmsGWF5q5gmemZXOiOYuh0SGT/7PgJVNPz3LXREXlXg2an4MBUD8W5oTkduCX+3KTMCwRrVrDYw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/clickable": "2.1.0", + "@chakra-ui/descendant": "3.1.0", + "@chakra-ui/lazy-utils": "2.0.5", + "@chakra-ui/react-children-utils": "2.0.6", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-use-controllable-state": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/react-use-safe-layout-effect": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/tag": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/tag/-/tag-3.1.1.tgz", + "integrity": "sha512-Bdel79Dv86Hnge2PKOU+t8H28nm/7Y3cKd4Kfk9k3lOpUh4+nkSGe58dhRzht59lEqa4N9waCgQiBdkydjvBXQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/icon": "3.2.0", + "@chakra-ui/react-context": "2.1.0" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/textarea": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.1.2.tgz", + "integrity": "sha512-ip7tvklVCZUb2fOHDb23qPy/Fr2mzDOGdkrpbNi50hDCiV4hFX02jdQJdi3ydHZUyVgZVBKPOJ+lT9i7sKA2wA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/form-control": "2.2.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/theme": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/theme/-/theme-3.3.1.tgz", + "integrity": "sha512-Hft/VaT8GYnItGCBbgWd75ICrIrIFrR7lVOhV/dQnqtfGqsVDlrztbSErvMkoPKt0UgAkd9/o44jmZ6X4U2nZQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/anatomy": "2.2.2", + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/theme-tools": "2.1.2" + }, + "peerDependencies": { + "@chakra-ui/styled-system": ">=2.8.0" + } + }, + "node_modules/@chakra-ui/theme-tools": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.1.2.tgz", + "integrity": "sha512-Qdj8ajF9kxY4gLrq7gA+Azp8CtFHGO9tWMN2wfF9aQNgG9AuMhPrUzMq9AMQ0MXiYcgNq/FD3eegB43nHVmXVA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/anatomy": "2.2.2", + "@chakra-ui/shared-utils": "2.0.5", + "color2k": "^2.0.2" + }, + "peerDependencies": { + "@chakra-ui/styled-system": ">=2.0.0" + } + }, + "node_modules/@chakra-ui/theme-utils": { + "version": "2.0.21", + "resolved": "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.21.tgz", + "integrity": "sha512-FjH5LJbT794r0+VSCXB3lT4aubI24bLLRWB+CuRKHijRvsOg717bRdUN/N1fEmEpFnRVrbewttWh/OQs0EWpWw==", + "license": "MIT", + "dependencies": { + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/styled-system": "2.9.2", + "@chakra-ui/theme": "3.3.1", + "lodash.mergewith": "4.6.2" + } + }, + "node_modules/@chakra-ui/toast": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@chakra-ui/toast/-/toast-7.0.2.tgz", + "integrity": "sha512-yvRP8jFKRs/YnkuE41BVTq9nB2v/KDRmje9u6dgDmE5+1bFt3bwjdf9gVbif4u5Ve7F7BGk5E093ARRVtvLvXA==", + "license": "MIT", + "dependencies": { + "@chakra-ui/alert": "2.2.2", + "@chakra-ui/close-button": "2.1.1", + "@chakra-ui/portal": "2.1.0", + "@chakra-ui/react-context": "2.1.0", + "@chakra-ui/react-use-timeout": "2.1.0", + "@chakra-ui/react-use-update-effect": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5", + "@chakra-ui/styled-system": "2.9.2", + "@chakra-ui/theme": "3.3.1" + }, + "peerDependencies": { + "@chakra-ui/system": "2.6.2", + "framer-motion": ">=4.0.0", + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/@chakra-ui/tooltip": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.3.1.tgz", + "integrity": "sha512-Rh39GBn/bL4kZpuEMPPRwYNnccRCL+w9OqamWHIB3Qboxs6h8cOyXfIdGxjo72lvhu1QI/a4KFqkM3St+WfC0A==", + "license": "MIT", + "dependencies": { + "@chakra-ui/dom-utils": "2.1.0", + "@chakra-ui/popper": "3.1.0", + "@chakra-ui/portal": "2.1.0", + "@chakra-ui/react-types": "2.0.7", + "@chakra-ui/react-use-disclosure": "2.1.0", + "@chakra-ui/react-use-event-listener": "2.1.0", + "@chakra-ui/react-use-merge-refs": "2.1.0", + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "framer-motion": ">=4.0.0", + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/@chakra-ui/transition": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.1.0.tgz", + "integrity": "sha512-orkT6T/Dt+/+kVwJNy7zwJ+U2xAZ3EU7M3XCs45RBvUnZDr/u9vdmaM/3D/rOpmQJWgQBwKPJleUXrYWUagEDQ==", + "license": "MIT", + "dependencies": { + "@chakra-ui/shared-utils": "2.0.5" + }, + "peerDependencies": { + "framer-motion": ">=4.0.0", + "react": ">=18" + } + }, + "node_modules/@chakra-ui/utils": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.15.tgz", + "integrity": "sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA==", + "license": "MIT", + "dependencies": { + "@types/lodash.mergewith": "4.6.7", + "css-box-model": "1.2.1", + "framesync": "6.1.2", + "lodash.mergewith": "4.6.2" + } + }, + "node_modules/@chakra-ui/visually-hidden": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.2.0.tgz", + "integrity": "sha512-KmKDg01SrQ7VbTD3+cPWf/UfpF5MSwm3v7MWi0n5t8HnnadT13MF0MJCDSXbBWnzLv1ZKJ6zlyAOeARWX+DpjQ==", + "license": "MIT", + "peerDependencies": { + "@chakra-ui/system": ">=2.0.0", + "react": ">=18" + } + }, + "node_modules/@dnd-kit/accessibility": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.1.0.tgz", + "integrity": "sha512-ea7IkhKvlJUv9iSHJOnxinBcoOI3ppGnnL+VDJ75O45Nss6HtZd8IdN8touXPDtASfeI2T2LImb8VOZcL47wjQ==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/core": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@dnd-kit/core/-/core-6.1.0.tgz", + "integrity": "sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg==", + "license": "MIT", + "dependencies": { + "@dnd-kit/accessibility": "^3.1.0", + "@dnd-kit/utilities": "^3.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/sortable": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-8.0.0.tgz", + "integrity": "sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==", + "license": "MIT", + "dependencies": { + "@dnd-kit/utilities": "^3.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "@dnd-kit/core": "^6.1.0", + "react": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/utilities": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.2.tgz", + "integrity": "sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==", + "license": "MIT" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", + "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", + "license": "MIT", + "optional": true, + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==", + "license": "MIT", + "optional": true + }, + "node_modules/@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==", + "license": "MIT" + }, + "node_modules/@emotion/react": { + "version": "11.11.3", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz", + "integrity": "sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", + "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/server": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/server/-/server-11.11.0.tgz", + "integrity": "sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA==", + "license": "MIT", + "dependencies": { + "@emotion/utils": "^1.2.1", + "html-tokenize": "^2.0.0", + "multipipe": "^1.0.2", + "through": "^2.3.8" + }, + "peerDependencies": { + "@emotion/css": "^11.0.0-rc.0" + }, + "peerDependenciesMeta": { + "@emotion/css": { + "optional": true + } + } + }, + "node_modules/@emotion/sheet": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==", + "license": "MIT" + }, + "node_modules/@emotion/styled": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz", + "integrity": "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/is-prop-valid": "^1.2.1", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0-rc.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/styled/node_modules/@emotion/is-prop-valid": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", + "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.8.1" + } + }, + "node_modules/@emotion/unitless": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==", + "license": "MIT" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==", + "license": "MIT" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==", + "license": "MIT" + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", + "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.1" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", + "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.0.0", + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/react": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.19.2.tgz", + "integrity": "sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w==", + "license": "MIT", + "dependencies": { + "@floating-ui/react-dom": "^1.3.0", + "aria-hidden": "^1.1.3", + "tabbable": "^6.0.1" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-1.3.0.tgz", + "integrity": "sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.2.1" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==", + "license": "MIT" + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.4.tgz", + "integrity": "sha512-Oud2QPM5dHviZNn4y/WhhYKSXksv+1xLEIsNrAbGcFzUN3ubqWRFT5gwPchNc5NuzILOU4tPBDTZ4VwhL8Y7cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.23.tgz", + "integrity": "sha512-9/4foRoUKp8s96tSkh8DlAAc5A0Ty8vLXld+l9gjKKY6ckwI8G15f0hskGmuLZu78ZlGa1vtsfOa+lnB4vG6Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mantine/carousel": { + "version": "6.0.21", + "resolved": "https://registry.npmjs.org/@mantine/carousel/-/carousel-6.0.21.tgz", + "integrity": "sha512-cQAQ5RlVhSrYA8aez/euzs5nQKcGcwxVTS/gf46GEZ0gcDJXlymZPbc2OopH/WDczEaMWOF7wz8R9+uG1hYNCg==", + "license": "MIT", + "dependencies": { + "@mantine/utils": "6.0.21" + }, + "peerDependencies": { + "@mantine/core": "6.0.21", + "@mantine/hooks": "6.0.21", + "embla-carousel-react": "^7.0.0", + "react": ">=16.8.0" + } + }, + "node_modules/@mantine/core": { + "version": "6.0.21", + "resolved": "https://registry.npmjs.org/@mantine/core/-/core-6.0.21.tgz", + "integrity": "sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg==", + "license": "MIT", + "dependencies": { + "@floating-ui/react": "^0.19.1", + "@mantine/styles": "6.0.21", + "@mantine/utils": "6.0.21", + "@radix-ui/react-scroll-area": "1.0.2", + "react-remove-scroll": "^2.5.5", + "react-textarea-autosize": "8.3.4" + }, + "peerDependencies": { + "@mantine/hooks": "6.0.21", + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@mantine/hooks": { + "version": "6.0.21", + "resolved": "https://registry.npmjs.org/@mantine/hooks/-/hooks-6.0.21.tgz", + "integrity": "sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@mantine/next": { + "version": "6.0.21", + "resolved": "https://registry.npmjs.org/@mantine/next/-/next-6.0.21.tgz", + "integrity": "sha512-McaVZZsmUol3yY92mSJSgcMQKFST97pVxNtI7Z52YocyuTjPPFXmqxF/TFj24A7noh1wzvRCPjfd9HX66sY+iQ==", + "license": "MIT", + "dependencies": { + "@mantine/ssr": "6.0.21", + "@mantine/styles": "6.0.21" + }, + "peerDependencies": { + "next": "*", + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@mantine/ssr": { + "version": "6.0.21", + "resolved": "https://registry.npmjs.org/@mantine/ssr/-/ssr-6.0.21.tgz", + "integrity": "sha512-TVPiz7VxbBntT42UFg4LCRqsv6HM5nvL5d2jBBbFcg9oztJ/5KVGhrtWbu2+kpq/uWWOpmE0sKDs3HQ/qr1PdQ==", + "license": "MIT", + "dependencies": { + "@mantine/styles": "6.0.21", + "html-react-parser": "1.4.12" + }, + "peerDependencies": { + "@emotion/react": ">=11.9.0", + "@emotion/server": ">=11.4.0", + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@mantine/styles": { + "version": "6.0.21", + "resolved": "https://registry.npmjs.org/@mantine/styles/-/styles-6.0.21.tgz", + "integrity": "sha512-PVtL7XHUiD/B5/kZ/QvZOZZQQOj12QcRs3Q6nPoqaoPcOX5+S7bMZLMH0iLtcGq5OODYk0uxlvuJkOZGoPj8Mg==", + "license": "MIT", + "dependencies": { + "clsx": "1.1.1", + "csstype": "3.0.9" + }, + "peerDependencies": { + "@emotion/react": ">=11.9.0", + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@mantine/styles/node_modules/csstype": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", + "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==", + "license": "MIT" + }, + "node_modules/@mantine/utils": { + "version": "6.0.21", + "resolved": "https://registry.npmjs.org/@mantine/utils/-/utils-6.0.21.tgz", + "integrity": "sha512-33RVDRop5jiWFao3HKd3Yp7A9mEq4HAJxJPTuYm1NkdqX6aTKOQK7wT8v8itVodBp+sb4cJK6ZVdD1UurK/txQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@mongodb-js/saslprep": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.4.tgz", + "integrity": "sha512-8zJ8N1x51xo9hwPh6AWnKdLGEC5N3lDa6kms1YHmFBoRhTpJR6HG8wWk0td1MVCu9cD4YBrvjZEtd5Obw0Fbnw==", + "license": "MIT", + "dependencies": { + "sparse-bitfield": "^3.0.3" + } + }, + "node_modules/@next/env": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/env/-/env-14.1.4.tgz", + "integrity": "sha512-e7X7bbn3Z6DWnDi75UWn+REgAbLEqxI8Tq2pkFOFAMpWAWApz/YCUhtWMWn410h8Q2fYiYL7Yg5OlxMOCfFjJQ==" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.0.tgz", + "integrity": "sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob": "10.3.10" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.4.tgz", + "integrity": "sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "14.1.4", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.4.tgz", + "integrity": "sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.4.tgz", + "integrity": "sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.4.tgz", + "integrity": "sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.4.tgz", + "integrity": "sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.4.tgz", + "integrity": "sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.4.tgz", + "integrity": "sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.4.tgz", + "integrity": "sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@radix-ui/number": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.0.tgz", + "integrity": "sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + } + }, + "node_modules/@radix-ui/primitive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.0.tgz", + "integrity": "sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + } + }, + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz", + "integrity": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-context": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.0.tgz", + "integrity": "sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-direction": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.0.tgz", + "integrity": "sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-presence": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.0.tgz", + "integrity": "sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.0", + "@radix-ui/react-use-layout-effect": "1.0.0" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz", + "integrity": "sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-slot": "1.0.1" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-scroll-area": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz", + "integrity": "sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/number": "1.0.0", + "@radix-ui/primitive": "1.0.0", + "@radix-ui/react-compose-refs": "1.0.0", + "@radix-ui/react-context": "1.0.0", + "@radix-ui/react-direction": "1.0.0", + "@radix-ui/react-presence": "1.0.0", + "@radix-ui/react-primitive": "1.0.1", + "@radix-ui/react-use-callback-ref": "1.0.0", + "@radix-ui/react-use-layout-effect": "1.0.0" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-slot": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz", + "integrity": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.0" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz", + "integrity": "sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz", + "integrity": "sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@redis/bloom": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz", + "integrity": "sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/client": { + "version": "1.5.14", + "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.5.14.tgz", + "integrity": "sha512-YGn0GqsRBFUQxklhY7v562VMOP0DcmlrHHs3IV1mFE3cbxe31IITUkqhBcIhVSI/2JqtWAJXg5mjV4aU+zD0HA==", + "dependencies": { + "cluster-key-slot": "1.1.2", + "generic-pool": "3.9.0", + "yallist": "4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@redis/graph": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz", + "integrity": "sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/json": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.6.tgz", + "integrity": "sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/search": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.1.6.tgz", + "integrity": "sha512-mZXCxbTYKBQ3M2lZnEddwEAks0Kc7nauire8q20oA0oA/LoA+E/b5Y5KZn232ztPb1FkIGqo12vh3Lf+Vw5iTw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/time-series": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.5.tgz", + "integrity": "sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz", + "integrity": "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@swc/helpers": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", + "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", + "license": "MIT", + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/hoist-non-react-statics/node_modules/@types/react": { + "version": "18.2.58", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", + "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/lodash": { + "version": "4.14.202", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz", + "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==", + "license": "MIT" + }, + "node_modules/@types/lodash.mergewith": { + "version": "4.6.7", + "resolved": "https://registry.npmjs.org/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz", + "integrity": "sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==", + "license": "MIT", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/node": { + "version": "20.11.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.17.tgz", + "integrity": "sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/p5": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@types/p5/-/p5-1.7.6.tgz", + "integrity": "sha512-6pLTOo0V3N5jZb5nTwjiv3lPHLK3Z/TjbhQUj8CTWXocUk1Z/f6OHTp3Pcwi1BhWnf5gqKUcyEb1gP0KIJuQgw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.2.55", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.55.tgz", + "integrity": "sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-beautiful-dnd": { + "version": "13.1.8", + "resolved": "https://registry.npmjs.org/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.8.tgz", + "integrity": "sha512-E3TyFsro9pQuK4r8S/OL6G99eq7p8v29sX0PM7oT8Z+PJfZvSQTx4zTQbUJ+QZXioAF0e7TGBEcA1XhYhCweyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-beautiful-dnd/node_modules/@types/react": { + "version": "18.2.58", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", + "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.19", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.19.tgz", + "integrity": "sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-dom/node_modules/@types/react": { + "version": "18.2.58", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", + "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-redux": { + "version": "7.1.33", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz", + "integrity": "sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==", + "license": "MIT", + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "node_modules/@types/react-redux/node_modules/@types/react": { + "version": "18.2.58", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", + "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==", + "license": "MIT" + }, + "node_modules/@types/webidl-conversions": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", + "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==", + "license": "MIT" + }, + "node_modules/@types/whatwg-url": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.4.tgz", + "integrity": "sha512-lXCmTWSHJvf0TRSO58nm978b8HJ/EdsSsEKLd3ODHFjo+3VGAyyTp4v50nWvwtzBxSMQrVOK7tcuN0zGPLICMw==", + "license": "MIT", + "dependencies": { + "@types/webidl-conversions": "*" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/@vygruppen/spor-accordion-react": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@vygruppen/spor-accordion-react/-/spor-accordion-react-1.0.1.tgz", + "integrity": "sha512-HakCVEknnh6w24QEp/maU01/m1XP6EZhN5Xq7ITw3EJWBNzfYZ2k4U/NM1+Xm+/NdLpsIMyuHWL8RS2o/PKW2g==", + "license": "MIT", + "peerDependencies": { + "@chakra-ui/react": "^2.3.5", + "@emotion/react": "^11.10.4", + "@emotion/styled": "^11.10.4", + "framer-motion": ">6.0.0", + "react": "^18.2.0", + "react-dom": "^18.2.0" + } + }, + "node_modules/@zag-js/dom-query": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@zag-js/dom-query/-/dom-query-0.16.0.tgz", + "integrity": "sha512-Oqhd6+biWyKnhKwFFuZrrf6lxBz2tX2pRQe6grUnYwO6HJ8BcbqZomy2lpOdr+3itlaUqx+Ywj5E5ZZDr/LBfQ==", + "license": "MIT" + }, + "node_modules/@zag-js/element-size": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.10.5.tgz", + "integrity": "sha512-uQre5IidULANvVkNOBQ1tfgwTQcGl4hliPSe69Fct1VfYb2Fd0jdAcGzqQgPhfrXFpR62MxLPB7erxJ/ngtL8w==", + "license": "MIT" + }, + "node_modules/@zag-js/focus-visible": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-0.16.0.tgz", + "integrity": "sha512-a7U/HSopvQbrDU4GLerpqiMcHKEkQkNPeDZJWz38cw/6Upunh41GjHetq5TB84hxyCaDzJ6q2nEdNoBQfC0FKA==", + "license": "MIT", + "dependencies": { + "@zag-js/dom-query": "0.16.0" + } + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "license": "BSD-3-Clause" + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/afinn-165": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/afinn-165/-/afinn-165-1.0.4.tgz", + "integrity": "sha512-7+Wlx3BImrK0HiG6y3lU4xX7SpBPSSu8T9iguPMlaueRFxjbYwAQrp9lqZUuFikqKbd/en8lVREILvP2J80uJA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/afinn-165-financialmarketnews": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/afinn-165-financialmarketnews/-/afinn-165-financialmarketnews-3.0.0.tgz", + "integrity": "sha512-0g9A1S3ZomFIGDTzZ0t6xmv4AuokBvBmpes8htiyHpH7N4xDmvSQL6UxL/Zcs2ypRb3VwgCscaD8Q3zEawKYhw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/apparatus": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/apparatus/-/apparatus-0.0.10.tgz", + "integrity": "sha512-KLy/ugo33KZA7nugtQ7O0E1c8kQ52N3IvD/XgIh4w/Nr28ypfkwDfA67F1ev4N1m5D+BOk1+b2dEJDfpj/VvZg==", + "dependencies": { + "sylvester": ">= 0.0.8" + }, + "engines": { + "node": ">=0.2.6" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-hidden": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.3.tgz", + "integrity": "sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.filter": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", + "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", + "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", + "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.1.0", + "es-shim-unscopables": "^1.0.2" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/autoprefixer": { + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/binary-search": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", + "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==" + }, + "node_modules/blockly": { + "version": "10.4.2", + "resolved": "https://registry.npmjs.org/blockly/-/blockly-10.4.2.tgz", + "integrity": "sha512-oCJkHZD1HEPYPwnMk/sbmMmhW6UFe+3iH5yvDn3hy3HSVzCOunkw9H1Crb/MmlhhFdvjB5uWgGzQNAa2eWAV6A==", + "license": "Apache-2.0", + "dependencies": { + "jsdom": "22.1.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bson": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-6.3.0.tgz", + "integrity": "sha512-balJfqwwTBddxfnidJZagCBPP/f48zj9Sdp3OJswREOgsJzHiQSaOIAtApSgDQFYgHqAvFkp53AFSqjMDZoTFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=16.20.1" + } + }, + "node_modules/buffer-from": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz", + "integrity": "sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==", + "license": "MIT" + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001589", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001589.tgz", + "integrity": "sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/chalk/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "license": "MIT" + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cluster-key-slot": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", + "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/color2k": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.3.tgz", + "integrity": "sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/compute-scroll-into-view": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz", + "integrity": "sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", + "license": "MIT", + "dependencies": { + "toggle-selection": "^1.0.6" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cosmiconfig/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-box-model": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", + "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", + "license": "MIT", + "dependencies": { + "tiny-invariant": "^1.0.6" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssstyle": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-3.0.0.tgz", + "integrity": "sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==", + "license": "MIT", + "dependencies": { + "rrweb-cssom": "^0.6.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/data-urls": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-4.0.0.tgz", + "integrity": "sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^12.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "license": "MIT" + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", + "license": "MIT" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true, + "license": "MIT" + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "license": "MIT", + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "license": "BSD-3-Clause", + "dependencies": { + "readable-stream": "^2.0.2" + } + }, + "node_modules/duplexer2/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/duplexer2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/duplexer2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.4.681", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.681.tgz", + "integrity": "sha512-1PpuqJUFWoXZ1E54m8bsLPVYwIVCRzvaL+n5cjigGga4z854abDnFRc+cTa2th4S79kyGqya/1xoR7h+Y5G5lg==", + "dev": true, + "license": "ISC" + }, + "node_modules/embla-carousel": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-7.1.0.tgz", + "integrity": "sha512-Bh8Pa8NWzgugLkf8sAGexQlBCNDFaej5BXiKgQdRJ1mUC9NWBrw9Z23YVPVGkguWoz5LMjZXXFVGCobl3UPt/Q==", + "license": "MIT" + }, + "node_modules/embla-carousel-react": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-7.1.0.tgz", + "integrity": "sha512-tbYRPRZSDNd2QLNqYDcArAakGIxtUbhS7tkP0dGXktXHGgcX+3ji3VrOUTOftBiujZrMV8kRxtrRUe/1soloIQ==", + "license": "MIT", + "dependencies": { + "embla-carousel": "7.1.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.1 || ^18.0.0" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.4.tgz", + "integrity": "sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.7", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.2", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.1", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.0", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.1", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true, + "license": "MIT" + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz", + "integrity": "sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.4", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.2", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-next": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.1.0.tgz", + "integrity": "sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "14.1.0", + "@rushstack/eslint-patch": "^1.3.3", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", + "dev": true, + "license": "ISC", + "dependencies": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "fast-glob": "^3.3.1", + "get-tsconfig": "^4.5.0", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/exenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", + "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==", + "license": "BSD-3-Clause" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "license": "MIT" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true, + "license": "ISC" + }, + "node_modules/focus-lock": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-1.3.3.tgz", + "integrity": "sha512-hfXkZha7Xt4RQtrL1HBfspAuIj89Y0fb6GX0dfJilb8S2G/lvL4akPAcHq6xoD2NuZnDMCnZL/zQesMyeu6Psg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/framer-motion": { + "version": "11.0.6", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.0.6.tgz", + "integrity": "sha512-BpO3mWF8UwxzO3Ca5AmSkrg14QYTeJa9vKgoLOoBdBdTPj0e81i1dMwnX6EQJXRieUx20uiDBXq8bA6y7N6b8Q==", + "license": "MIT", + "dependencies": { + "tslib": "^2.4.0" + }, + "optionalDependencies": { + "@emotion/is-prop-valid": "^0.8.2" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/framesync": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz", + "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==", + "license": "MIT", + "dependencies": { + "tslib": "2.4.0" + } + }, + "node_modules/framesync/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "license": "0BSD" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generic-pool": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz", + "integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", + "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/html-dom-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.2.0.tgz", + "integrity": "sha512-2HIpFMvvffsXHFUFjso0M9LqM+1Lm22BF+Df2ba+7QHJXjk63pWChEnI6YG27eaWqUdfnh5/Vy+OXrNTtepRsg==", + "license": "MIT", + "dependencies": { + "domhandler": "4.3.1", + "htmlparser2": "7.2.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-react-parser": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.12.tgz", + "integrity": "sha512-nqYQzr4uXh67G9ejAG7djupTHmQvSTgjY83zbXLRfKHJ0F06751jXx6WKSFARDdXxCngo2/7H4Rwtfeowql4gQ==", + "license": "MIT", + "dependencies": { + "domhandler": "4.3.1", + "html-dom-parser": "1.2.0", + "react-property": "2.0.0", + "style-to-js": "1.1.0" + }, + "peerDependencies": { + "react": "0.14 || 15 || 16 || 17 || 18" + } + }, + "node_modules/html-tokenize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-tokenize/-/html-tokenize-2.0.1.tgz", + "integrity": "sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w==", + "license": "MIT", + "dependencies": { + "buffer-from": "~0.1.1", + "inherits": "~2.0.1", + "minimist": "~1.2.5", + "readable-stream": "~1.0.27-1", + "through2": "~0.4.1" + }, + "bin": { + "html-tokenize": "bin/cmd.js" + } + }, + "node_modules/htmlparser2": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", + "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.2", + "domutils": "^2.8.0", + "entities": "^3.0.1" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", + "license": "MIT" + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/is-any-array": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-any-array/-/is-any-array-2.0.1.tgz", + "integrity": "sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==" + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "22.1.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-22.1.0.tgz", + "integrity": "sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "cssstyle": "^3.0.0", + "data-urls": "^4.0.0", + "decimal.js": "^10.4.3", + "domexception": "^4.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.4", + "parse5": "^7.1.2", + "rrweb-cssom": "^0.6.0", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^12.0.1", + "ws": "^8.13.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/kareem": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz", + "integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==", + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.mergewith": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "license": "ISC", + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/memjs": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/memjs/-/memjs-1.3.2.tgz", + "integrity": "sha512-qUEg2g8vxPe+zPn09KidjIStHPtoBO8Cttm8bgJFWWabbsjQ9Av9Ky+6UcvKx6ue0LLb/LEhtcyQpRyKfzeXcg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "license": "MIT" + }, + "node_modules/memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ml-array-mean": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/ml-array-mean/-/ml-array-mean-1.1.6.tgz", + "integrity": "sha512-MIdf7Zc8HznwIisyiJGRH9tRigg3Yf4FldW8DxKxpCCv/g5CafTw0RRu51nojVEOXuCQC7DRVVu5c7XXO/5joQ==", + "dependencies": { + "ml-array-sum": "^1.1.6" + } + }, + "node_modules/ml-array-sum": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/ml-array-sum/-/ml-array-sum-1.1.6.tgz", + "integrity": "sha512-29mAh2GwH7ZmiRnup4UyibQZB9+ZLyMShvt4cH4eTK+cL2oEMIZFnSyB3SS8MlsTh6q/w/yh48KmqLxmovN4Dw==", + "dependencies": { + "is-any-array": "^2.0.0" + } + }, + "node_modules/ml-distance": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/ml-distance/-/ml-distance-4.0.1.tgz", + "integrity": "sha512-feZ5ziXs01zhyFUUUeZV5hwc0f5JW0Sh0ckU1koZe/wdVkJdGxcP06KNQuF0WBTj8FttQUzcvQcpcrOp/XrlEw==", + "dependencies": { + "ml-array-mean": "^1.1.6", + "ml-distance-euclidean": "^2.0.0", + "ml-tree-similarity": "^1.0.0" + } + }, + "node_modules/ml-distance-euclidean": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ml-distance-euclidean/-/ml-distance-euclidean-2.0.0.tgz", + "integrity": "sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q==" + }, + "node_modules/ml-tree-similarity": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ml-tree-similarity/-/ml-tree-similarity-1.0.0.tgz", + "integrity": "sha512-XJUyYqjSuUQkNQHMscr6tcjldsOoAekxADTplt40QKfwW6nd++1wHWV9AArl0Zvw/TIHgNaZZNvr8QGvE8wLRg==", + "dependencies": { + "binary-search": "^1.3.5", + "num-sort": "^2.0.0" + } + }, + "node_modules/mongo": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/mongo/-/mongo-0.1.0.tgz", + "integrity": "sha512-2MPq+GCNKhah0V/g/HIQI/S1h6Ycd87KPuXAITkeXWT6wncvABFxOaXdzCKlRvLSQRUkDimllrRrhoHUTD8usg==", + "dependencies": { + "mongodb": "*" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/mongodb": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.3.0.tgz", + "integrity": "sha512-tt0KuGjGtLUhLoU263+xvQmPHEGTw5LbcNC73EoFRYgSHwZt5tsoJC110hDyO1kjQzpgNrpdcSza9PknWN4LrA==", + "license": "Apache-2.0", + "dependencies": { + "@mongodb-js/saslprep": "^1.1.0", + "bson": "^6.2.0", + "mongodb-connection-string-url": "^3.0.0" + }, + "engines": { + "node": ">=16.20.1" + }, + "peerDependencies": { + "@aws-sdk/credential-providers": "^3.188.0", + "@mongodb-js/zstd": "^1.1.0", + "gcp-metadata": "^5.2.0", + "kerberos": "^2.0.1", + "mongodb-client-encryption": ">=6.0.0 <7", + "snappy": "^7.2.2", + "socks": "^2.7.1" + }, + "peerDependenciesMeta": { + "@aws-sdk/credential-providers": { + "optional": true + }, + "@mongodb-js/zstd": { + "optional": true + }, + "gcp-metadata": { + "optional": true + }, + "kerberos": { + "optional": true + }, + "mongodb-client-encryption": { + "optional": true + }, + "snappy": { + "optional": true + }, + "socks": { + "optional": true + } + } + }, + "node_modules/mongodb-connection-string-url": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.0.tgz", + "integrity": "sha512-t1Vf+m1I5hC2M5RJx/7AtxgABy1cZmIPQRMXw+gEIPn/cZNF3Oiy+l0UIypUwVB5trcWHq3crg2g3uAR9aAwsQ==", + "license": "Apache-2.0", + "dependencies": { + "@types/whatwg-url": "^11.0.2", + "whatwg-url": "^13.0.0" + } + }, + "node_modules/mongodb-connection-string-url/node_modules/whatwg-url": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", + "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", + "license": "MIT", + "dependencies": { + "tr46": "^4.1.1", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/mongoose": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.2.0.tgz", + "integrity": "sha512-la93n6zCYRbPS+c5N9oTDAktvREy5OT9OCljp1Tah0y3+p8UPMTAoabWaLZMdzYruOtF9/9GRf6MasaZjiZP1A==", + "license": "MIT", + "dependencies": { + "bson": "^6.2.0", + "kareem": "2.5.1", + "mongodb": "6.3.0", + "mpath": "0.9.0", + "mquery": "5.0.0", + "ms": "2.1.3", + "sift": "16.0.1" + }, + "engines": { + "node": ">=16.20.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mongoose" + } + }, + "node_modules/mpath": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", + "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mquery": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", + "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", + "license": "MIT", + "dependencies": { + "debug": "4.x" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/multipipe": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz", + "integrity": "sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ==", + "license": "MIT", + "dependencies": { + "duplexer2": "^0.1.2", + "object-assign": "^4.1.0" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/natural/-/natural-6.12.0.tgz", + "integrity": "sha512-ZV/cuaxOvJ7CSxQRYHc6nlx7ql6hVPQc20N5ubdqVbotWnnqsNc+0/QG+ACIC3XPQ4rfrQrdC/1k47v1cSszTQ==", + "dependencies": { + "afinn-165": "^1.0.2", + "afinn-165-financialmarketnews": "^3.0.0", + "apparatus": "^0.0.10", + "dotenv": "^16.4.5", + "memjs": "^1.3.2", + "mongoose": "^8.2.0", + "pg": "^8.11.3", + "redis": "^4.6.13", + "safe-stable-stringify": "^2.2.0", + "stopwords-iso": "^1.1.0", + "sylvester": "^0.0.12", + "underscore": "^1.9.1", + "uuid": "^9.0.1", + "wordnet-db": "^3.1.11" + }, + "engines": { + "node": ">=0.4.10" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next": { + "version": "14.1.4", + "resolved": "https://registry.npmjs.org/next/-/next-14.1.4.tgz", + "integrity": "sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==", + "dependencies": { + "@next/env": "14.1.4", + "@swc/helpers": "0.5.2", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001579", + "graceful-fs": "^4.2.11", + "postcss": "8.4.31", + "styled-jsx": "5.1.1" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=18.17.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "14.1.4", + "@next/swc-darwin-x64": "14.1.4", + "@next/swc-linux-arm64-gnu": "14.1.4", + "@next/swc-linux-arm64-musl": "14.1.4", + "@next/swc-linux-x64-gnu": "14.1.4", + "@next/swc-linux-x64-musl": "14.1.4", + "@next/swc-win32-arm64-msvc": "14.1.4", + "@next/swc-win32-ia32-msvc": "14.1.4", + "@next/swc-win32-x64-msvc": "14.1.4" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/num-sort": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/num-sort/-/num-sort-2.1.0.tgz", + "integrity": "sha512-1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", + "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array.prototype.filter": "^1.0.3", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p5": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/p5/-/p5-1.9.0.tgz", + "integrity": "sha512-+5/hz0ZokCDf7BMMAeemE7FIo7gFZK7ImL62acHLXZwerGjqj+171bnaAWj4aCFCx6fwysAr2U7/AKuPyPhehA==", + "license": "LGPL-2.1" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "license": "MIT", + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pg": { + "version": "8.11.5", + "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", + "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", + "dependencies": { + "pg-connection-string": "^2.6.4", + "pg-pool": "^3.6.2", + "pg-protocol": "^1.6.1", + "pg-types": "^2.1.0", + "pgpass": "1.x" + }, + "engines": { + "node": ">= 8.0.0" + }, + "optionalDependencies": { + "pg-cloudflare": "^1.1.1" + }, + "peerDependencies": { + "pg-native": ">=3.0.1" + }, + "peerDependenciesMeta": { + "pg-native": { + "optional": true + } + } + }, + "node_modules/pg-cloudflare": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", + "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", + "optional": true + }, + "node_modules/pg-connection-string": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", + "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" + }, + "node_modules/pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pg-pool": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", + "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", + "peerDependencies": { + "pg": ">=8.0" + } + }, + "node_modules/pg-protocol": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", + "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" + }, + "node_modules/pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "dependencies": { + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pgpass": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "dependencies": { + "split2": "^4.1.0" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", + "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", + "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/postgres-bytea": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "dependencies": { + "xtend": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval/node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/raf-schd": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz", + "integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==", + "license": "MIT" + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-beautiful-dnd": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz", + "integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==", + "license": "Apache-2.0", + "dependencies": { + "@babel/runtime": "^7.9.2", + "css-box-model": "^1.2.0", + "memoize-one": "^5.1.1", + "raf-schd": "^4.0.2", + "react-redux": "^7.2.0", + "redux": "^4.0.4", + "use-memo-one": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8.5 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-blockly": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/react-blockly/-/react-blockly-8.1.1.tgz", + "integrity": "sha512-MOT9c/1D3ItO7vwUAlWvgDEJT7alNkR5MCgwE160EK2hFka4DRPHOUXBGnxRod8OVY+hdvMUnmiHUVTrYODwXQ==", + "license": "MIT", + "dependencies": { + "blockly": ">= 10.0.0", + "prop-types": "^15.8.1" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/react-clientside-effect": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz", + "integrity": "sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.13" + }, + "peerDependencies": { + "react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-fast-compare": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==", + "license": "MIT" + }, + "node_modules/react-focus-lock": { + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-2.11.1.tgz", + "integrity": "sha512-IXLwnTBrLTlKTpASZXqqXJ8oymWrgAlOfuuDYN4XCuN1YJ72dwX198UCaF1QqGUk5C3QOnlMik//n3ufcfe8Ig==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.0.0", + "focus-lock": "^1.3.2", + "prop-types": "^15.6.2", + "react-clientside-effect": "^1.2.6", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==", + "license": "MIT" + }, + "node_modules/react-modal": { + "version": "3.16.1", + "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz", + "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==", + "license": "MIT", + "dependencies": { + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", + "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" + } + }, + "node_modules/react-popper": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", + "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", + "license": "MIT", + "dependencies": { + "react-fast-compare": "^3.0.1", + "warning": "^4.0.2" + }, + "peerDependencies": { + "@popperjs/core": "^2.0.0", + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" + } + }, + "node_modules/react-property": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz", + "integrity": "sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==", + "license": "MIT" + }, + "node_modules/react-redux": { + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" + }, + "peerDependencies": { + "react": "^16.8.3 || ^17 || ^18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-redux/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/react-remove-scroll": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz", + "integrity": "sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==", + "license": "MIT", + "dependencies": { + "react-remove-scroll-bar": "^2.3.4", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-remove-scroll-bar": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.5.tgz", + "integrity": "sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw==", + "license": "MIT", + "dependencies": { + "react-style-singleton": "^2.2.1", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-sortable-hoc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz", + "integrity": "sha512-JZUw7hBsAHXK7PTyErJyI7SopSBFRcFHDjWW5SWjcugY0i6iH7f+eJkY8cJmGMlZ1C9xz1J3Vjz0plFpavVeRg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.2.0", + "invariant": "^2.2.4", + "prop-types": "^15.5.7" + }, + "peerDependencies": { + "prop-types": "^15.5.7", + "react": "^16.3.0 || ^17.0.0", + "react-dom": "^16.3.0 || ^17.0.0" + } + }, + "node_modules/react-style-singleton": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", + "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", + "license": "MIT", + "dependencies": { + "get-nonce": "^1.0.0", + "invariant": "^2.2.4", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-textarea-autosize": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz", + "integrity": "sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.2", + "use-composed-ref": "^1.3.0", + "use-latest": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/reactstrap": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-9.2.2.tgz", + "integrity": "sha512-4KroiGOdqZLAnMGzHjpErW3G7bLB+QbKzzMLIDXydPIV0y74lpdL7WtXHkLWAGInd97WCPNx4+R0NQDPyzIfhw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@popperjs/core": "^2.6.0", + "classnames": "^2.2.3", + "prop-types": "^15.5.8", + "react-popper": "^2.2.4", + "react-transition-group": "^4.4.2" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/readable-stream/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/redis": { + "version": "4.6.13", + "resolved": "https://registry.npmjs.org/redis/-/redis-4.6.13.tgz", + "integrity": "sha512-MHgkS4B+sPjCXpf+HfdetBwbRz6vCtsceTmw1pHNYJAsYxrfpOP6dz+piJWGos8wqG7qb3vj/Rrc5qOlmInUuA==", + "dependencies": { + "@redis/bloom": "1.2.0", + "@redis/client": "1.5.14", + "@redis/graph": "1.1.1", + "@redis/json": "1.0.6", + "@redis/search": "1.1.6", + "@redis/time-series": "1.0.5" + } + }, + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", + "integrity": "sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0", + "get-intrinsic": "^1.2.3", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rrweb-cssom": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz", + "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==", + "license": "MIT" + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "engines": { + "node": ">=10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", + "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sift": { + "version": "16.0.1", + "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz", + "integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==", + "license": "MIT" + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "license": "MIT", + "dependencies": { + "memory-pager": "^1.0.2" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/stopwords-iso": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stopwords-iso/-/stopwords-iso-1.1.0.tgz", + "integrity": "sha512-I6GPS/E0zyieHehMRPQcqkiBMJKGgLta+1hREixhoLPqEA0AlVFiC43dl8uPpmkkeRdDMzYRWFWk5/l9x7nmNg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "license": "MIT" + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-to-js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.0.tgz", + "integrity": "sha512-1OqefPDxGrlMwcbfpsTVRyzwdhr4W0uxYQzeA2F1CBc8WG04udg2+ybRnvh3XYL4TdHQrCahLtax2jc8xaE6rA==", + "license": "MIT", + "dependencies": { + "style-to-object": "0.3.0" + } + }, + "node_modules/style-to-object": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", + "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "license": "MIT", + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==", + "license": "MIT" + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sylvester": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/sylvester/-/sylvester-0.0.12.tgz", + "integrity": "sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw==", + "engines": { + "node": ">=0.2.6" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "license": "MIT" + }, + "node_modules/tabbable": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", + "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", + "license": "MIT" + }, + "node_modules/tailwindcss": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "license": "MIT" + }, + "node_modules/through2": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", + "integrity": "sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ==", + "license": "MIT", + "dependencies": { + "readable-stream": "~1.0.17", + "xtend": "~2.1.1" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==", + "license": "MIT" + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", + "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", + "license": "MIT", + "dependencies": { + "punycode": "^2.3.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/ts-api-utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz", + "integrity": "sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.5.tgz", + "integrity": "sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.4.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", + "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true, + "license": "MIT" + }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/use-callback-ref": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.1.tgz", + "integrity": "sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-composed-ref": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", + "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-latest": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", + "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", + "license": "MIT", + "dependencies": { + "use-isomorphic-layout-effect": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-memo-one": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz", + "integrity": "sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/use-sidecar": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", + "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", + "license": "MIT", + "dependencies": { + "detect-node-es": "^1.1.0", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "license": "MIT", + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-12.0.1.tgz", + "integrity": "sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==", + "license": "MIT", + "dependencies": { + "tr46": "^4.1.1", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", + "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.5", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wordnet-db": { + "version": "3.1.14", + "resolved": "https://registry.npmjs.org/wordnet-db/-/wordnet-db-3.1.14.tgz", + "integrity": "sha512-zVyFsvE+mq9MCmwXUWHIcpfbrHHClZWZiVOzKSxNJruIcFn2RbY55zkhiAMMxM8zCVSmtNiViq8FsAZSFpMYag==", + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/ws": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "license": "Apache-2.0", + "engines": { + "node": ">=12" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "license": "MIT" + }, + "node_modules/xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==", + "dependencies": { + "object-keys": "~0.4.0" + }, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/xtend/node_modules/object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==", + "license": "MIT" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.0.tgz", + "integrity": "sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ==", + "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json index da67526..a4305a5 100644 --- a/package.json +++ b/package.json @@ -26,8 +26,11 @@ "dotenv": "^16.4.4", "embla-carousel-react": "^7.1.0", "framer-motion": "^11.0.5", + "lodash": "^4.17.21", + "ml-distance": "^4.0.1", "mongo": "^0.1.0", "mongoose": "^8.1.2", + "natural": "^6.12.0", "next": "latest", "p5": "^1.9.0", "react": "18.2.0", @@ -51,6 +54,6 @@ "postcss": "^8.4.35", "prettier": "^3.2.5", "tailwindcss": "^3.4.1", - "typescript": "5.3.3" + "typescript": "^5.4.4" } } diff --git a/pages/response.tsx b/pages/response.tsx index 3343a6c..497ab98 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -108,13 +108,13 @@ const Response: NextPage = ({ {/* */}
          - {' '} +
          {/* */} {/* */} - +
          diff --git a/yarn.lock b/yarn.lock index 31e5c3e..a1a1413 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,17 +4,17 @@ "@aashutoshrathi/word-wrap@^1.2.3": version "1.2.6" - resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + resolved "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz" integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== "@alloc/quick-lru@^5.2.0": version "5.2.0" - resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + resolved "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz" integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== "@babel/code-frame@^7.0.0": version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz" integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: "@babel/highlight" "^7.23.4" @@ -22,24 +22,24 @@ "@babel/helper-module-imports@^7.16.7": version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz" integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== dependencies: "@babel/types" "^7.22.15" "@babel/helper-string-parser@^7.23.4": version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz" integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== "@babel/highlight@^7.23.4": version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz" integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: "@babel/helper-validator-identifier" "^7.22.20" @@ -48,14 +48,14 @@ "@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.9.tgz#47791a15e4603bb5f905bc0753801cf21d6345f7" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz" integrity sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw== dependencies: regenerator-runtime "^0.14.0" "@babel/types@^7.22.15": version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.9.tgz#1dd7b59a9a2b5c87f8b41e52770b5ecbf492e002" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz" integrity sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q== dependencies: "@babel/helper-string-parser" "^7.23.4" @@ -64,7 +64,7 @@ "@chakra-ui/accordion@2.3.1": version "2.3.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/accordion/-/accordion-2.3.1.tgz#a326509e286a5c4e8478de9bc2b4b05017039e6b" + resolved "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.3.1.tgz" integrity sha512-FSXRm8iClFyU+gVaXisOSEw0/4Q+qZbFRiuhIAkVU6Boj0FxAMrlo9a8AV5TuF77rgaHytCdHk0Ng+cyUijrag== dependencies: "@chakra-ui/descendant" "3.1.0" @@ -77,7 +77,7 @@ "@chakra-ui/alert@2.2.2": version "2.2.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/alert/-/alert-2.2.2.tgz#aeba951d120c7c6e69d5f515a695ad6e4db43ffe" + resolved "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.2.2.tgz" integrity sha512-jHg4LYMRNOJH830ViLuicjb3F+v6iriE/2G5T+Sd0Hna04nukNJ1MxUmBPE+vI22me2dIflfelu2v9wdB6Pojw== dependencies: "@chakra-ui/icon" "3.2.0" @@ -87,12 +87,12 @@ "@chakra-ui/anatomy@2.2.2": version "2.2.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/anatomy/-/anatomy-2.2.2.tgz#2d0e14cba2534d92077ca28abf8c183b6e27897b" + resolved "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.2.2.tgz" integrity sha512-MV6D4VLRIHr4PkW4zMyqfrNS1mPlCTiCXwvYGtDFQYr+xHFfonhAuf9WjsSc0nyp2m0OdkSLnzmVKkZFLo25Tg== "@chakra-ui/avatar@2.3.0": version "2.3.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/avatar/-/avatar-2.3.0.tgz#f018a2714d1e3ba5970bcf66558887925fdfccf4" + resolved "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.3.0.tgz" integrity sha512-8gKSyLfygnaotbJbDMHDiJoF38OHXUYVme4gGxZ1fLnQEdPVEaIWfH+NndIjOM0z8S+YEFnT9KyGMUtvPrBk3g== dependencies: "@chakra-ui/image" "2.1.0" @@ -102,7 +102,7 @@ "@chakra-ui/breadcrumb@2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/breadcrumb/-/breadcrumb-2.2.0.tgz#751bc48498f3c403f97b5d9aae528ebfd405ef48" + resolved "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.2.0.tgz" integrity sha512-4cWCG24flYBxjruRi4RJREWTGF74L/KzI2CognAW/d/zWR0CjiScuJhf37Am3LFbCySP6WSoyBOtTIoTA4yLEA== dependencies: "@chakra-ui/react-children-utils" "2.0.6" @@ -111,14 +111,14 @@ "@chakra-ui/breakpoint-utils@2.0.8": version "2.0.8" - resolved "https://registry.yarnpkg.com/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.8.tgz#750d3712668b69f6e8917b45915cee0e08688eed" + resolved "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.8.tgz" integrity sha512-Pq32MlEX9fwb5j5xx8s18zJMARNHlQZH2VH1RZgfgRDpp7DcEgtRW5AInfN5CfqdHLO1dGxA7I3MqEuL5JnIsA== dependencies: "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/button@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/button/-/button-2.1.0.tgz#623ed32cc92fc8e52492923e9924791fc6f25447" + resolved "https://registry.npmjs.org/@chakra-ui/button/-/button-2.1.0.tgz" integrity sha512-95CplwlRKmmUXkdEp/21VkEWgnwcx2TOBG6NfYlsuLBDHSLlo5FKIiE2oSi4zXc4TLcopGcWPNcm/NDaSC5pvA== dependencies: "@chakra-ui/react-context" "2.1.0" @@ -128,14 +128,14 @@ "@chakra-ui/card@2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/card/-/card-2.2.0.tgz#b5e59dc51c171fced76ea76bf26088803b8bc184" + resolved "https://registry.npmjs.org/@chakra-ui/card/-/card-2.2.0.tgz" integrity sha512-xUB/k5MURj4CtPAhdSoXZidUbm8j3hci9vnc+eZJVDqhDOShNlD6QeniQNRPRys4lWAQLCbFcrwL29C8naDi6g== dependencies: "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/checkbox@2.3.2": version "2.3.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/checkbox/-/checkbox-2.3.2.tgz#4ecb14a2f57b7470d1a58542ca4691c3b105bfa1" + resolved "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.3.2.tgz" integrity sha512-85g38JIXMEv6M+AcyIGLh7igNtfpAN6KGQFYxY9tBj0eWvWk4NKQxvqqyVta0bSAyIl1rixNIIezNpNWk2iO4g== dependencies: "@chakra-ui/form-control" "2.2.0" @@ -152,7 +152,7 @@ "@chakra-ui/clickable@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/clickable/-/clickable-2.1.0.tgz#800fa8d10cf45a41fc50a3df32c679a3ce1921c3" + resolved "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.1.0.tgz" integrity sha512-flRA/ClPUGPYabu+/GLREZVZr9j2uyyazCAUHAdrTUEdDYCr31SVGhgh7dgKdtq23bOvAQJpIJjw/0Bs0WvbXw== dependencies: "@chakra-ui/react-use-merge-refs" "2.1.0" @@ -160,26 +160,26 @@ "@chakra-ui/close-button@2.1.1": version "2.1.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/close-button/-/close-button-2.1.1.tgz#995b245c56eb41465a71d8667840c238618a7b66" + resolved "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.1.1.tgz" integrity sha512-gnpENKOanKexswSVpVz7ojZEALl2x5qjLYNqSQGbxz+aP9sOXPfUS56ebyBrre7T7exuWGiFeRwnM0oVeGPaiw== dependencies: "@chakra-ui/icon" "3.2.0" "@chakra-ui/color-mode@2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/color-mode/-/color-mode-2.2.0.tgz#828d47234c74ba2fb4c5dd63a63331aead20b9f6" + resolved "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.2.0.tgz" integrity sha512-niTEA8PALtMWRI9wJ4LL0CSBDo8NBfLNp4GD6/0hstcm3IlbBHTVKxN6HwSaoNYfphDQLxCjT4yG+0BJA5tFpg== dependencies: "@chakra-ui/react-use-safe-layout-effect" "2.1.0" "@chakra-ui/control-box@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/control-box/-/control-box-2.1.0.tgz#0f4586797b3154c02463bc5c106782e70c88f04f" + resolved "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.1.0.tgz" integrity sha512-gVrRDyXFdMd8E7rulL0SKeoljkLQiPITFnsyMO8EFHNZ+AHt5wK4LIguYVEq88APqAGZGfHFWXr79RYrNiE3Mg== "@chakra-ui/counter@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/counter/-/counter-2.1.0.tgz#e413a2f1093a18f847bb7aa240117fde788a59e6" + resolved "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.1.0.tgz" integrity sha512-s6hZAEcWT5zzjNz2JIWUBzRubo9la/oof1W7EKZVVfPYHERnl5e16FmBC79Yfq8p09LQ+aqFKm/etYoJMMgghw== dependencies: "@chakra-ui/number-utils" "2.0.7" @@ -188,12 +188,12 @@ "@chakra-ui/css-reset@2.3.0": version "2.3.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/css-reset/-/css-reset-2.3.0.tgz#83e3160a9c2a12431cad0ee27ebfbf3aedc5c9c7" + resolved "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.3.0.tgz" integrity sha512-cQwwBy5O0jzvl0K7PLTLgp8ijqLPKyuEMiDXwYzl95seD3AoeuoCLyzZcJtVqaUZ573PiBdAbY/IlZcwDOItWg== "@chakra-ui/descendant@3.1.0": version "3.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/descendant/-/descendant-3.1.0.tgz#f3b80ed13ffc4bf1d615b3ed5541bd0905375cca" + resolved "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.1.0.tgz" integrity sha512-VxCIAir08g5w27klLyi7PVo8BxhW4tgU/lxQyujkmi4zx7hT9ZdrcQLAted/dAa+aSIZ14S1oV0Q9lGjsAdxUQ== dependencies: "@chakra-ui/react-context" "2.1.0" @@ -201,12 +201,12 @@ "@chakra-ui/dom-utils@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/dom-utils/-/dom-utils-2.1.0.tgz#d15df89e458ef19756db04c7cfd084eb552454f0" + resolved "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.1.0.tgz" integrity sha512-ZmF2qRa1QZ0CMLU8M1zCfmw29DmPNtfjR9iTo74U5FPr3i1aoAh7fbJ4qAlZ197Xw9eAW28tvzQuoVWeL5C7fQ== "@chakra-ui/editable@3.1.0": version "3.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/editable/-/editable-3.1.0.tgz#065783c2e3389c3bb9ab0582cb50d38e1dc00fa1" + resolved "https://registry.npmjs.org/@chakra-ui/editable/-/editable-3.1.0.tgz" integrity sha512-j2JLrUL9wgg4YA6jLlbU88370eCRyor7DZQD9lzpY95tSOXpTljeg3uF9eOmDnCs6fxp3zDWIfkgMm/ExhcGTg== dependencies: "@chakra-ui/react-context" "2.1.0" @@ -221,12 +221,12 @@ "@chakra-ui/event-utils@2.0.8": version "2.0.8" - resolved "https://registry.yarnpkg.com/@chakra-ui/event-utils/-/event-utils-2.0.8.tgz#e6439ba200825a2f15d8f1973d267d1c00a6d1b4" + resolved "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.8.tgz" integrity sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw== "@chakra-ui/focus-lock@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/focus-lock/-/focus-lock-2.1.0.tgz#580e5450fe85356987b9a246abaff8333369c667" + resolved "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.1.0.tgz" integrity sha512-EmGx4PhWGjm4dpjRqM4Aa+rCWBxP+Rq8Uc/nAVnD4YVqkEhBkrPTpui2lnjsuxqNaZ24fIAZ10cF1hlpemte/w== dependencies: "@chakra-ui/dom-utils" "2.1.0" @@ -234,7 +234,7 @@ "@chakra-ui/form-control@2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/form-control/-/form-control-2.2.0.tgz#69c771d6406ddac8ab357ae88446cc11827656a4" + resolved "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.2.0.tgz" integrity sha512-wehLC1t4fafCVJ2RvJQT2jyqsAwX7KymmiGqBu7nQoQz8ApTkGABWpo/QwDh3F/dBLrouHDoOvGmYTqft3Mirw== dependencies: "@chakra-ui/icon" "3.2.0" @@ -245,7 +245,7 @@ "@chakra-ui/hooks@2.2.1": version "2.2.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/hooks/-/hooks-2.2.1.tgz#b86ce5eeaaab877ddcb11a50842d1227306ace28" + resolved "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.2.1.tgz" integrity sha512-RQbTnzl6b1tBjbDPf9zGRo9rf/pQMholsOudTxjy4i9GfTfz6kgp5ValGjQm2z7ng6Z31N1cnjZ1AlSzQ//ZfQ== dependencies: "@chakra-ui/react-utils" "2.0.12" @@ -255,14 +255,14 @@ "@chakra-ui/icon@3.2.0": version "3.2.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/icon/-/icon-3.2.0.tgz#92b9454aa0d561b4994bcd6a1b3bb1fdd5c67bef" + resolved "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.2.0.tgz" integrity sha512-xxjGLvlX2Ys4H0iHrI16t74rG9EBcpFvJ3Y3B7KMQTrnW34Kf7Da/UC8J67Gtx85mTHW020ml85SVPKORWNNKQ== dependencies: "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/image@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/image/-/image-2.1.0.tgz#6c205f1ca148e3bf58345b0b5d4eb3d959eb9f87" + resolved "https://registry.npmjs.org/@chakra-ui/image/-/image-2.1.0.tgz" integrity sha512-bskumBYKLiLMySIWDGcz0+D9Th0jPvmX6xnRMs4o92tT3Od/bW26lahmV2a2Op2ItXeCmRMY+XxJH5Gy1i46VA== dependencies: "@chakra-ui/react-use-safe-layout-effect" "2.1.0" @@ -270,7 +270,7 @@ "@chakra-ui/input@2.1.2": version "2.1.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/input/-/input-2.1.2.tgz#0cad49ec372f8f21f2f4f1db365f34b9a708ff9d" + resolved "https://registry.npmjs.org/@chakra-ui/input/-/input-2.1.2.tgz" integrity sha512-GiBbb3EqAA8Ph43yGa6Mc+kUPjh4Spmxp1Pkelr8qtudpc3p2PJOOebLpd90mcqw8UePPa+l6YhhPtp6o0irhw== dependencies: "@chakra-ui/form-control" "2.2.0" @@ -281,7 +281,7 @@ "@chakra-ui/layout@2.3.1": version "2.3.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/layout/-/layout-2.3.1.tgz#0601c5eb91555d24a7015a7c9d4e01fed2698557" + resolved "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.3.1.tgz" integrity sha512-nXuZ6WRbq0WdgnRgLw+QuxWAHuhDtVX8ElWqcTK+cSMFg/52eVP47czYBE5F35YhnoW2XBwfNoNgZ7+e8Z01Rg== dependencies: "@chakra-ui/breakpoint-utils" "2.0.8" @@ -293,17 +293,17 @@ "@chakra-ui/lazy-utils@2.0.5": version "2.0.5" - resolved "https://registry.yarnpkg.com/@chakra-ui/lazy-utils/-/lazy-utils-2.0.5.tgz#363c3fa1d421362790b416ffa595acb835e1ae5b" + resolved "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.5.tgz" integrity sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg== "@chakra-ui/live-region@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/live-region/-/live-region-2.1.0.tgz#02b4b1d997075f19a7a9a87187e08c72e82ef0dd" + resolved "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.1.0.tgz" integrity sha512-ZOxFXwtaLIsXjqnszYYrVuswBhnIHHP+XIgK1vC6DePKtyK590Wg+0J0slDwThUAd4MSSIUa/nNX84x1GMphWw== "@chakra-ui/media-query@3.3.0": version "3.3.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/media-query/-/media-query-3.3.0.tgz#40f9151dedb6a7af9df3be0474b59a799c92c619" + resolved "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.3.0.tgz" integrity sha512-IsTGgFLoICVoPRp9ykOgqmdMotJG0CnPsKvGQeSFOB/dZfIujdVb14TYxDU4+MURXry1MhJ7LzZhv+Ml7cr8/g== dependencies: "@chakra-ui/breakpoint-utils" "2.0.8" @@ -312,7 +312,7 @@ "@chakra-ui/menu@2.2.1": version "2.2.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/menu/-/menu-2.2.1.tgz#7d9810d435f6b40fa72ed867a33b88a1ef75073f" + resolved "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.2.1.tgz" integrity sha512-lJS7XEObzJxsOwWQh7yfG4H8FzFPRP5hVPN/CL+JzytEINCSBvsCDHrYPQGp7jzpCi8vnTqQQGQe0f8dwnXd2g== dependencies: "@chakra-ui/clickable" "2.1.0" @@ -333,7 +333,7 @@ "@chakra-ui/modal@2.3.1": version "2.3.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/modal/-/modal-2.3.1.tgz#524dc32b6b4f545b54ae531dbf6c74e1052ee794" + resolved "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.3.1.tgz" integrity sha512-TQv1ZaiJMZN+rR9DK0snx/OPwmtaGH1HbZtlYt4W4s6CzyK541fxLRTjIXfEzIGpvNW+b6VFuFjbcR78p4DEoQ== dependencies: "@chakra-ui/close-button" "2.1.1" @@ -349,7 +349,7 @@ "@chakra-ui/number-input@2.1.2": version "2.1.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/number-input/-/number-input-2.1.2.tgz#dda9095fba6a4b89212332db02831b94120da163" + resolved "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.1.2.tgz" integrity sha512-pfOdX02sqUN0qC2ysuvgVDiws7xZ20XDIlcNhva55Jgm095xjm8eVdIBfNm3SFbSUNxyXvLTW/YQanX74tKmuA== dependencies: "@chakra-ui/counter" "2.1.0" @@ -367,17 +367,17 @@ "@chakra-ui/number-utils@2.0.7": version "2.0.7" - resolved "https://registry.yarnpkg.com/@chakra-ui/number-utils/-/number-utils-2.0.7.tgz#aaee979ca2fb1923a0373a91619473811315db11" + resolved "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.7.tgz" integrity sha512-yOGxBjXNvLTBvQyhMDqGU0Oj26s91mbAlqKHiuw737AXHt0aPllOthVUqQMeaYLwLCjGMg0jtI7JReRzyi94Dg== "@chakra-ui/object-utils@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/object-utils/-/object-utils-2.1.0.tgz#a4ecf9cea92f1de09f5531f53ffdc41e0b19b6c3" + resolved "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.1.0.tgz" integrity sha512-tgIZOgLHaoti5PYGPTwK3t/cqtcycW0owaiOXoZOcpwwX/vlVb+H1jFsQyWiiwQVPt9RkoSLtxzXamx+aHH+bQ== "@chakra-ui/pin-input@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/pin-input/-/pin-input-2.1.0.tgz#61e6bbf909ec510634307b2861c4f1891a9f8d81" + resolved "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.1.0.tgz" integrity sha512-x4vBqLStDxJFMt+jdAHHS8jbh294O53CPQJoL4g228P513rHylV/uPscYUHrVJXRxsHfRztQO9k45jjTYaPRMw== dependencies: "@chakra-ui/descendant" "3.1.0" @@ -389,7 +389,7 @@ "@chakra-ui/popover@2.2.1": version "2.2.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/popover/-/popover-2.2.1.tgz#89cfd29817abcd204da570073c0f2b4d8072c3a3" + resolved "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.2.1.tgz" integrity sha512-K+2ai2dD0ljvJnlrzesCDT9mNzLifE3noGKZ3QwLqd/K34Ym1W/0aL1ERSynrcG78NKoXS54SdEzkhCZ4Gn/Zg== dependencies: "@chakra-ui/close-button" "2.1.1" @@ -406,7 +406,7 @@ "@chakra-ui/popper@3.1.0": version "3.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/popper/-/popper-3.1.0.tgz#92a9180c6894763af3b22a6003f9a9d958fe2659" + resolved "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.1.0.tgz" integrity sha512-ciDdpdYbeFG7og6/6J8lkTFxsSvwTdMLFkpVylAF6VNC22jssiWfquj2eyD4rJnzkRFPvIWJq8hvbfhsm+AjSg== dependencies: "@chakra-ui/react-types" "2.0.7" @@ -415,7 +415,7 @@ "@chakra-ui/portal@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/portal/-/portal-2.1.0.tgz#9e7f57424d7041738b6563cac80134561080bd27" + resolved "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.1.0.tgz" integrity sha512-9q9KWf6SArEcIq1gGofNcFPSWEyl+MfJjEUg/un1SMlQjaROOh3zYr+6JAwvcORiX7tyHosnmWC3d3wI2aPSQg== dependencies: "@chakra-ui/react-context" "2.1.0" @@ -423,14 +423,14 @@ "@chakra-ui/progress@2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/progress/-/progress-2.2.0.tgz#67444ea9779631d7c8395b2c9c78e5634f994999" + resolved "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.2.0.tgz" integrity sha512-qUXuKbuhN60EzDD9mHR7B67D7p/ZqNS2Aze4Pbl1qGGZfulPW0PY8Rof32qDtttDQBkzQIzFGE8d9QpAemToIQ== dependencies: "@chakra-ui/react-context" "2.1.0" "@chakra-ui/provider@2.4.2": version "2.4.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/provider/-/provider-2.4.2.tgz#92cb10b6a7df0720e3fa62716dc7cd872ae3ea3d" + resolved "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.4.2.tgz" integrity sha512-w0Tef5ZCJK1mlJorcSjItCSbyvVuqpvyWdxZiVQmE6fvSJR83wZof42ux0+sfWD+I7rHSfj+f9nzhNaEWClysw== dependencies: "@chakra-ui/css-reset" "2.3.0" @@ -441,7 +441,7 @@ "@chakra-ui/radio@2.1.2": version "2.1.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/radio/-/radio-2.1.2.tgz#66db19c61a2e628aaf5e727027f7c3b4006ea898" + resolved "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.1.2.tgz" integrity sha512-n10M46wJrMGbonaghvSRnZ9ToTv/q76Szz284gv4QUWvyljQACcGrXIONUnQ3BIwbOfkRqSk7Xl/JgZtVfll+w== dependencies: "@chakra-ui/form-control" "2.2.0" @@ -453,29 +453,29 @@ "@chakra-ui/react-children-utils@2.0.6": version "2.0.6" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-children-utils/-/react-children-utils-2.0.6.tgz#6c480c6a60678fcb75cb7d57107c7a79e5179b92" + resolved "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.6.tgz" integrity sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA== "@chakra-ui/react-context@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-context/-/react-context-2.1.0.tgz#4858be1d5ff1c8ac0a0ec088d93a3b7f1cbbff99" + resolved "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.1.0.tgz" integrity sha512-iahyStvzQ4AOwKwdPReLGfDesGG+vWJfEsn0X/NoGph/SkN+HXtv2sCfYFFR9k7bb+Kvc6YfpLlSuLvKMHi2+w== "@chakra-ui/react-env@3.1.0": version "3.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-env/-/react-env-3.1.0.tgz#7d3c1c05a501bb369524d9f3d38c9325eb16ab50" + resolved "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-3.1.0.tgz" integrity sha512-Vr96GV2LNBth3+IKzr/rq1IcnkXv+MLmwjQH6C8BRtn3sNskgDFD5vLkVXcEhagzZMCh8FR3V/bzZPojBOyNhw== dependencies: "@chakra-ui/react-use-safe-layout-effect" "2.1.0" "@chakra-ui/react-types@2.0.7": version "2.0.7" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-types/-/react-types-2.0.7.tgz#799c166a44882b23059c8f510eac9bd5d0869ac4" + resolved "https://registry.npmjs.org/@chakra-ui/react-types/-/react-types-2.0.7.tgz" integrity sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ== "@chakra-ui/react-use-animation-state@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.1.0.tgz#eab661fbafd96804fe867b0df0c27e78feefe6e2" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.1.0.tgz" integrity sha512-CFZkQU3gmDBwhqy0vC1ryf90BVHxVN8cTLpSyCpdmExUEtSEInSCGMydj2fvn7QXsz/za8JNdO2xxgJwxpLMtg== dependencies: "@chakra-ui/dom-utils" "2.1.0" @@ -483,33 +483,33 @@ "@chakra-ui/react-use-callback-ref@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.1.0.tgz#a508085f4d9e7d84d4ceffdf5f41745c9ac451d7" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.1.0.tgz" integrity sha512-efnJrBtGDa4YaxDzDE90EnKD3Vkh5a1t3w7PhnRQmsphLy3g2UieasoKTlT2Hn118TwDjIv5ZjHJW6HbzXA9wQ== "@chakra-ui/react-use-controllable-state@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.1.0.tgz#8fb6fa2f45d0c04173582ae8297e604ffdb9c7d9" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.1.0.tgz" integrity sha512-QR/8fKNokxZUs4PfxjXuwl0fj/d71WPrmLJvEpCTkHjnzu7LnYvzoe2wB867IdooQJL0G1zBxl0Dq+6W1P3jpg== dependencies: "@chakra-ui/react-use-callback-ref" "2.1.0" "@chakra-ui/react-use-disclosure@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.1.0.tgz#90093eaf45db1bea7a6851dd0ce5cdb3eb66f90a" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.1.0.tgz" integrity sha512-Ax4pmxA9LBGMyEZJhhUZobg9C0t3qFE4jVF1tGBsrLDcdBeLR9fwOogIPY9Hf0/wqSlAryAimICbr5hkpa5GSw== dependencies: "@chakra-ui/react-use-callback-ref" "2.1.0" "@chakra-ui/react-use-event-listener@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.1.0.tgz#afea2645bd9b38f754fc2b8eb858f9bb22385ded" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.1.0.tgz" integrity sha512-U5greryDLS8ISP69DKDsYcsXRtAdnTQT+jjIlRYZ49K/XhUR/AqVZCK5BkR1spTDmO9H8SPhgeNKI70ODuDU/Q== dependencies: "@chakra-ui/react-use-callback-ref" "2.1.0" "@chakra-ui/react-use-focus-effect@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.1.0.tgz#963fb790370dfadd51d12666ff2da60706f53a2a" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.1.0.tgz" integrity sha512-xzVboNy7J64xveLcxTIJ3jv+lUJKDwRM7Szwn9tNzUIPD94O3qwjV7DDCUzN2490nSYDF4OBMt/wuDBtaR3kUQ== dependencies: "@chakra-ui/dom-utils" "2.1.0" @@ -519,38 +519,38 @@ "@chakra-ui/react-use-focus-on-pointer-down@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.1.0.tgz#2fbcf6bc7d06d97606747e231a908d5c387ca0cc" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.1.0.tgz" integrity sha512-2jzrUZ+aiCG/cfanrolsnSMDykCAbv9EK/4iUyZno6BYb3vziucmvgKuoXbMPAzWNtwUwtuMhkby8rc61Ue+Lg== dependencies: "@chakra-ui/react-use-event-listener" "2.1.0" "@chakra-ui/react-use-interval@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-interval/-/react-use-interval-2.1.0.tgz#2602c097b3ab74b6644812e4f5efaad621218d98" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.1.0.tgz" integrity sha512-8iWj+I/+A0J08pgEXP1J1flcvhLBHkk0ln7ZvGIyXiEyM6XagOTJpwNhiu+Bmk59t3HoV/VyvyJTa+44sEApuw== dependencies: "@chakra-ui/react-use-callback-ref" "2.1.0" "@chakra-ui/react-use-latest-ref@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.1.0.tgz#d1e926130102566ece1d39f8a48ed125e0c8441a" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.1.0.tgz" integrity sha512-m0kxuIYqoYB0va9Z2aW4xP/5b7BzlDeWwyXCH6QpT2PpW3/281L3hLCm1G0eOUcdVlayqrQqOeD6Mglq+5/xoQ== "@chakra-ui/react-use-merge-refs@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.1.0.tgz#c0c233527abdbea9a1348269c192012205762314" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.1.0.tgz" integrity sha512-lERa6AWF1cjEtWSGjxWTaSMvneccnAVH4V4ozh8SYiN9fSPZLlSG3kNxfNzdFvMEhM7dnP60vynF7WjGdTgQbQ== "@chakra-ui/react-use-outside-click@2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.2.0.tgz#5570b772a255f6f02b69e967127397c1b5fa3d3c" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.2.0.tgz" integrity sha512-PNX+s/JEaMneijbgAM4iFL+f3m1ga9+6QK0E5Yh4s8KZJQ/bLwZzdhMz8J/+mL+XEXQ5J0N8ivZN28B82N1kNw== dependencies: "@chakra-ui/react-use-callback-ref" "2.1.0" "@chakra-ui/react-use-pan-event@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.1.0.tgz#51c21bc3c0e9e73d1faef5ea4f7e3c3d071a2758" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.1.0.tgz" integrity sha512-xmL2qOHiXqfcj0q7ZK5s9UjTh4Gz0/gL9jcWPA6GVf+A0Od5imEDa/Vz+533yQKWiNSm1QGrIj0eJAokc7O4fg== dependencies: "@chakra-ui/event-utils" "2.0.8" @@ -559,43 +559,43 @@ "@chakra-ui/react-use-previous@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-previous/-/react-use-previous-2.1.0.tgz#f6046e6f7398b1e8d7e66ff7ebb8d61c92a2d3d0" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.1.0.tgz" integrity sha512-pjxGwue1hX8AFcmjZ2XfrQtIJgqbTF3Qs1Dy3d1krC77dEsiCUbQ9GzOBfDc8pfd60DrB5N2tg5JyHbypqh0Sg== "@chakra-ui/react-use-safe-layout-effect@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.1.0.tgz#3a95f0ba6fd5d2d0aa14919160f2c825f13e686f" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.1.0.tgz" integrity sha512-Knbrrx/bcPwVS1TorFdzrK/zWA8yuU/eaXDkNj24IrKoRlQrSBFarcgAEzlCHtzuhufP3OULPkELTzz91b0tCw== "@chakra-ui/react-use-size@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-size/-/react-use-size-2.1.0.tgz#fcf3070eaade8b4a84af8ce5341c4d5ca0a42bec" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.1.0.tgz" integrity sha512-tbLqrQhbnqOjzTaMlYytp7wY8BW1JpL78iG7Ru1DlV4EWGiAmXFGvtnEt9HftU0NJ0aJyjgymkxfVGI55/1Z4A== dependencies: "@zag-js/element-size" "0.10.5" "@chakra-ui/react-use-timeout@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-timeout/-/react-use-timeout-2.1.0.tgz#24415f54267d7241a3c1d36a5cae4d472834cef7" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.1.0.tgz" integrity sha512-cFN0sobKMM9hXUhyCofx3/Mjlzah6ADaEl/AXl5Y+GawB5rgedgAcu2ErAgarEkwvsKdP6c68CKjQ9dmTQlJxQ== dependencies: "@chakra-ui/react-use-callback-ref" "2.1.0" "@chakra-ui/react-use-update-effect@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.1.0.tgz#5c57cd1f50c2a6a8119e0f57f69510723d69884b" + resolved "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.1.0.tgz" integrity sha512-ND4Q23tETaR2Qd3zwCKYOOS1dfssojPLJMLvUtUbW5M9uW1ejYWgGUobeAiOVfSplownG8QYMmHTP86p/v0lbA== "@chakra-ui/react-utils@2.0.12": version "2.0.12" - resolved "https://registry.yarnpkg.com/@chakra-ui/react-utils/-/react-utils-2.0.12.tgz#d6b773b9a5b2e51dce61f51ac8a0e9a0f534f479" + resolved "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.12.tgz" integrity sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw== dependencies: "@chakra-ui/utils" "2.0.15" -"@chakra-ui/react@^2.8.2": +"@chakra-ui/react@^2.3.5", "@chakra-ui/react@^2.8.2": version "2.8.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/react/-/react-2.8.2.tgz#94d692fb35e4447748c5bfd73d8d38a746193c7d" + resolved "https://registry.npmjs.org/@chakra-ui/react/-/react-2.8.2.tgz" integrity sha512-Hn0moyxxyCDKuR9ywYpqgX8dvjqwu9ArwpIb9wHNYjnODETjLwazgNIliCVBRcJvysGRiV51U2/JtJVrpeCjUQ== dependencies: "@chakra-ui/accordion" "2.3.1" @@ -654,7 +654,7 @@ "@chakra-ui/select@2.1.2": version "2.1.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/select/-/select-2.1.2.tgz#f57d6cec0559373c32094fd4a5abd32855829264" + resolved "https://registry.npmjs.org/@chakra-ui/select/-/select-2.1.2.tgz" integrity sha512-ZwCb7LqKCVLJhru3DXvKXpZ7Pbu1TDZ7N0PdQ0Zj1oyVLJyrpef1u9HR5u0amOpqcH++Ugt0f5JSmirjNlctjA== dependencies: "@chakra-ui/form-control" "2.2.0" @@ -662,12 +662,12 @@ "@chakra-ui/shared-utils@2.0.5": version "2.0.5" - resolved "https://registry.yarnpkg.com/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz#cb2b49705e113853647f1822142619570feba081" + resolved "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz" integrity sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q== "@chakra-ui/skeleton@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/skeleton/-/skeleton-2.1.0.tgz#e3b25dd3afa330029d6d63be0f7cb8d44ad25531" + resolved "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.1.0.tgz" integrity sha512-JNRuMPpdZGd6zFVKjVQ0iusu3tXAdI29n4ZENYwAJEMf/fN0l12sVeirOxkJ7oEL0yOx2AgEYFSKdbcAgfUsAQ== dependencies: "@chakra-ui/media-query" "3.3.0" @@ -676,12 +676,12 @@ "@chakra-ui/skip-nav@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/skip-nav/-/skip-nav-2.1.0.tgz#cac27eecc6eded1e83c8f0cf7445d727739cb325" + resolved "https://registry.npmjs.org/@chakra-ui/skip-nav/-/skip-nav-2.1.0.tgz" integrity sha512-Hk+FG+vadBSH0/7hwp9LJnLjkO0RPGnx7gBJWI4/SpoJf3e4tZlWYtwGj0toYY4aGKl93jVghuwGbDBEMoHDug== "@chakra-ui/slider@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/slider/-/slider-2.1.0.tgz#1caeed18761ba2a390777418cc9389ba25e39bce" + resolved "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.1.0.tgz" integrity sha512-lUOBcLMCnFZiA/s2NONXhELJh6sY5WtbRykPtclGfynqqOo47lwWJx+VP7xaeuhDOPcWSSecWc9Y1BfPOCz9cQ== dependencies: "@chakra-ui/number-utils" "2.0.7" @@ -697,14 +697,14 @@ "@chakra-ui/spinner@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/spinner/-/spinner-2.1.0.tgz#aa24a3d692c6ac90714e0f0f82c76c12c78c8e60" + resolved "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.1.0.tgz" integrity sha512-hczbnoXt+MMv/d3gE+hjQhmkzLiKuoTo42YhUG7Bs9OSv2lg1fZHW1fGNRFP3wTi6OIbD044U1P9HK+AOgFH3g== dependencies: "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/stat@2.1.1": version "2.1.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/stat/-/stat-2.1.1.tgz#a204ba915795345996a16c79794d84826d7dcc2d" + resolved "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.1.1.tgz" integrity sha512-LDn0d/LXQNbAn2KaR3F1zivsZCewY4Jsy1qShmfBMKwn6rI8yVlbvu6SiA3OpHS0FhxbsZxQI6HefEoIgtqY6Q== dependencies: "@chakra-ui/icon" "3.2.0" @@ -713,16 +713,16 @@ "@chakra-ui/stepper@2.3.1": version "2.3.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/stepper/-/stepper-2.3.1.tgz#a0a0b73e147f202ab4e51cae55dad45489cc89fd" + resolved "https://registry.npmjs.org/@chakra-ui/stepper/-/stepper-2.3.1.tgz" integrity sha512-ky77lZbW60zYkSXhYz7kbItUpAQfEdycT0Q4bkHLxfqbuiGMf8OmgZOQkOB9uM4v0zPwy2HXhe0vq4Dd0xa55Q== dependencies: "@chakra-ui/icon" "3.2.0" "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/styled-system@2.9.2": +"@chakra-ui/styled-system@>=2.0.0", "@chakra-ui/styled-system@>=2.8.0", "@chakra-ui/styled-system@2.9.2": version "2.9.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/styled-system/-/styled-system-2.9.2.tgz#898ab63da560a4a014f7b05fa7767e8c76da6d2f" + resolved "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.9.2.tgz" integrity sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg== dependencies: "@chakra-ui/shared-utils" "2.0.5" @@ -731,15 +731,15 @@ "@chakra-ui/switch@2.1.2": version "2.1.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/switch/-/switch-2.1.2.tgz#f7c6878d8126bfac8fa3b939079f1017c21b7479" + resolved "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.1.2.tgz" integrity sha512-pgmi/CC+E1v31FcnQhsSGjJnOE2OcND4cKPyTE+0F+bmGm48Q/b5UmKD9Y+CmZsrt/7V3h8KNczowupfuBfIHA== dependencies: "@chakra-ui/checkbox" "2.3.2" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/system@2.6.2": +"@chakra-ui/system@>=2.0.0", "@chakra-ui/system@2.6.2": version "2.6.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/system/-/system-2.6.2.tgz#528ec955bd6a7f74da46470ee8225b1e2c80a78b" + resolved "https://registry.npmjs.org/@chakra-ui/system/-/system-2.6.2.tgz" integrity sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ== dependencies: "@chakra-ui/color-mode" "2.2.0" @@ -752,7 +752,7 @@ "@chakra-ui/table@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/table/-/table-2.1.0.tgz#20dce14c5e4d70dc7c6c0e87cce9b05907ff8c50" + resolved "https://registry.npmjs.org/@chakra-ui/table/-/table-2.1.0.tgz" integrity sha512-o5OrjoHCh5uCLdiUb0Oc0vq9rIAeHSIRScc2ExTC9Qg/uVZl2ygLrjToCaKfaaKl1oQexIeAcZDKvPG8tVkHyQ== dependencies: "@chakra-ui/react-context" "2.1.0" @@ -760,7 +760,7 @@ "@chakra-ui/tabs@3.0.0": version "3.0.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/tabs/-/tabs-3.0.0.tgz#854c06880af26158d7c72881c4b5e0453f6c485d" + resolved "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-3.0.0.tgz" integrity sha512-6Mlclp8L9lqXmsGWF5q5gmemZXOiOYuh0SGT/7PgJVNPz3LXREXlXg2an4MBUD8W5oTkduCX+3KTMCwRrVrDYw== dependencies: "@chakra-ui/clickable" "2.1.0" @@ -775,7 +775,7 @@ "@chakra-ui/tag@3.1.1": version "3.1.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/tag/-/tag-3.1.1.tgz#d05284b6549a84d3a08e57eec57df3ad0eebd882" + resolved "https://registry.npmjs.org/@chakra-ui/tag/-/tag-3.1.1.tgz" integrity sha512-Bdel79Dv86Hnge2PKOU+t8H28nm/7Y3cKd4Kfk9k3lOpUh4+nkSGe58dhRzht59lEqa4N9waCgQiBdkydjvBXQ== dependencies: "@chakra-ui/icon" "3.2.0" @@ -783,7 +783,7 @@ "@chakra-ui/textarea@2.1.2": version "2.1.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/textarea/-/textarea-2.1.2.tgz#30f8af0e233cec2dee79d527450c6586e7122eff" + resolved "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.1.2.tgz" integrity sha512-ip7tvklVCZUb2fOHDb23qPy/Fr2mzDOGdkrpbNi50hDCiV4hFX02jdQJdi3ydHZUyVgZVBKPOJ+lT9i7sKA2wA== dependencies: "@chakra-ui/form-control" "2.2.0" @@ -791,7 +791,7 @@ "@chakra-ui/theme-tools@2.1.2": version "2.1.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/theme-tools/-/theme-tools-2.1.2.tgz#913be05879cd816c546993ccb9ff7615f85ff69f" + resolved "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.1.2.tgz" integrity sha512-Qdj8ajF9kxY4gLrq7gA+Azp8CtFHGO9tWMN2wfF9aQNgG9AuMhPrUzMq9AMQ0MXiYcgNq/FD3eegB43nHVmXVA== dependencies: "@chakra-ui/anatomy" "2.2.2" @@ -800,7 +800,7 @@ "@chakra-ui/theme-utils@2.0.21": version "2.0.21" - resolved "https://registry.yarnpkg.com/@chakra-ui/theme-utils/-/theme-utils-2.0.21.tgz#da7ed541a5241a8ed0384eb14f37fa9b998382cf" + resolved "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.21.tgz" integrity sha512-FjH5LJbT794r0+VSCXB3lT4aubI24bLLRWB+CuRKHijRvsOg717bRdUN/N1fEmEpFnRVrbewttWh/OQs0EWpWw== dependencies: "@chakra-ui/shared-utils" "2.0.5" @@ -810,7 +810,7 @@ "@chakra-ui/theme@3.3.1": version "3.3.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/theme/-/theme-3.3.1.tgz#75c6cd0b5c70c0aa955068274ee4780f299bd8a4" + resolved "https://registry.npmjs.org/@chakra-ui/theme/-/theme-3.3.1.tgz" integrity sha512-Hft/VaT8GYnItGCBbgWd75ICrIrIFrR7lVOhV/dQnqtfGqsVDlrztbSErvMkoPKt0UgAkd9/o44jmZ6X4U2nZQ== dependencies: "@chakra-ui/anatomy" "2.2.2" @@ -819,7 +819,7 @@ "@chakra-ui/toast@7.0.2": version "7.0.2" - resolved "https://registry.yarnpkg.com/@chakra-ui/toast/-/toast-7.0.2.tgz#d1c396bbfced12e22b010899731fd8cc294d53ec" + resolved "https://registry.npmjs.org/@chakra-ui/toast/-/toast-7.0.2.tgz" integrity sha512-yvRP8jFKRs/YnkuE41BVTq9nB2v/KDRmje9u6dgDmE5+1bFt3bwjdf9gVbif4u5Ve7F7BGk5E093ARRVtvLvXA== dependencies: "@chakra-ui/alert" "2.2.2" @@ -834,7 +834,7 @@ "@chakra-ui/tooltip@2.3.1": version "2.3.1" - resolved "https://registry.yarnpkg.com/@chakra-ui/tooltip/-/tooltip-2.3.1.tgz#29fb8508a37bb6b20ab8dbb32bca6cd59b098796" + resolved "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.3.1.tgz" integrity sha512-Rh39GBn/bL4kZpuEMPPRwYNnccRCL+w9OqamWHIB3Qboxs6h8cOyXfIdGxjo72lvhu1QI/a4KFqkM3St+WfC0A== dependencies: "@chakra-ui/dom-utils" "2.1.0" @@ -848,14 +848,14 @@ "@chakra-ui/transition@2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/transition/-/transition-2.1.0.tgz#c8e95564f7ab356e78119780037bae5ad150c7b3" + resolved "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.1.0.tgz" integrity sha512-orkT6T/Dt+/+kVwJNy7zwJ+U2xAZ3EU7M3XCs45RBvUnZDr/u9vdmaM/3D/rOpmQJWgQBwKPJleUXrYWUagEDQ== dependencies: "@chakra-ui/shared-utils" "2.0.5" "@chakra-ui/utils@2.0.15": version "2.0.15" - resolved "https://registry.yarnpkg.com/@chakra-ui/utils/-/utils-2.0.15.tgz#bd800b1cff30eb5a5e8c36fa039f49984b4c5e4a" + resolved "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.15.tgz" integrity sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA== dependencies: "@types/lodash.mergewith" "4.6.7" @@ -865,19 +865,19 @@ "@chakra-ui/visually-hidden@2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@chakra-ui/visually-hidden/-/visually-hidden-2.2.0.tgz#9b0ecef8f01263ab808ba3bda7b36a0d91b4d5c1" + resolved "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.2.0.tgz" integrity sha512-KmKDg01SrQ7VbTD3+cPWf/UfpF5MSwm3v7MWi0n5t8HnnadT13MF0MJCDSXbBWnzLv1ZKJ6zlyAOeARWX+DpjQ== "@dnd-kit/accessibility@^3.1.0": version "3.1.0" - resolved "https://registry.yarnpkg.com/@dnd-kit/accessibility/-/accessibility-3.1.0.tgz#1054e19be276b5f1154ced7947fc0cb5d99192e0" + resolved "https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.1.0.tgz" integrity sha512-ea7IkhKvlJUv9iSHJOnxinBcoOI3ppGnnL+VDJ75O45Nss6HtZd8IdN8touXPDtASfeI2T2LImb8VOZcL47wjQ== dependencies: tslib "^2.0.0" "@dnd-kit/core@^6.1.0": version "6.1.0" - resolved "https://registry.yarnpkg.com/@dnd-kit/core/-/core-6.1.0.tgz#e81a3d10d9eca5d3b01cbf054171273a3fe01def" + resolved "https://registry.npmjs.org/@dnd-kit/core/-/core-6.1.0.tgz" integrity sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg== dependencies: "@dnd-kit/accessibility" "^3.1.0" @@ -886,7 +886,7 @@ "@dnd-kit/sortable@^8.0.0": version "8.0.0" - resolved "https://registry.yarnpkg.com/@dnd-kit/sortable/-/sortable-8.0.0.tgz#086b7ac6723d4618a4ccb6f0227406d8a8862a96" + resolved "https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-8.0.0.tgz" integrity sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g== dependencies: "@dnd-kit/utilities" "^3.2.2" @@ -894,14 +894,14 @@ "@dnd-kit/utilities@^3.2.2": version "3.2.2" - resolved "https://registry.yarnpkg.com/@dnd-kit/utilities/-/utilities-3.2.2.tgz#5a32b6af356dc5f74d61b37d6f7129a4040ced7b" + resolved "https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.2.tgz" integrity sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg== dependencies: tslib "^2.0.0" "@emotion/babel-plugin@^11.11.0": version "11.11.0" - resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c" + resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz" integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ== dependencies: "@babel/helper-module-imports" "^7.16.7" @@ -918,7 +918,7 @@ "@emotion/cache@^11.11.0": version "11.11.0" - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff" + resolved "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz" integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ== dependencies: "@emotion/memoize" "^0.8.1" @@ -929,36 +929,36 @@ "@emotion/hash@^0.9.1": version "0.9.1" - resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43" + resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz" integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== "@emotion/is-prop-valid@^0.8.2": version "0.8.8" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" + resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz" integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== dependencies: "@emotion/memoize" "0.7.4" "@emotion/is-prop-valid@^1.2.1": version "1.2.1" - resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz#23116cf1ed18bfeac910ec6436561ecb1a3885cc" + resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz" integrity sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw== dependencies: "@emotion/memoize" "^0.8.1" -"@emotion/memoize@0.7.4": - version "0.7.4" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" - integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== - "@emotion/memoize@^0.8.1": version "0.8.1" - resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17" + resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz" integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== -"@emotion/react@^11.11.3": +"@emotion/memoize@0.7.4": + version "0.7.4" + resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" + integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== + +"@emotion/react@^11.0.0", "@emotion/react@^11.0.0-rc.0", "@emotion/react@^11.10.4", "@emotion/react@^11.11.3", "@emotion/react@>=10.0.35", "@emotion/react@>=11.9.0": version "11.11.3" - resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.3.tgz#96b855dc40a2a55f52a72f518a41db4f69c31a25" + resolved "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz" integrity sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA== dependencies: "@babel/runtime" "^7.18.3" @@ -972,7 +972,7 @@ "@emotion/serialize@^1.1.2", "@emotion/serialize@^1.1.3": version "1.1.3" - resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.3.tgz#84b77bfcfe3b7bb47d326602f640ccfcacd5ffb0" + resolved "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz" integrity sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA== dependencies: "@emotion/hash" "^0.9.1" @@ -981,9 +981,9 @@ "@emotion/utils" "^1.2.1" csstype "^3.0.2" -"@emotion/server@^11.11.0": +"@emotion/server@^11.11.0", "@emotion/server@>=11.4.0": version "11.11.0" - resolved "https://registry.yarnpkg.com/@emotion/server/-/server-11.11.0.tgz#35537176a2a5ed8aed7801f254828e636ec3bd6e" + resolved "https://registry.npmjs.org/@emotion/server/-/server-11.11.0.tgz" integrity sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA== dependencies: "@emotion/utils" "^1.2.1" @@ -993,12 +993,12 @@ "@emotion/sheet@^1.2.2": version "1.2.2" - resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec" + resolved "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz" integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== -"@emotion/styled@^11.11.0": +"@emotion/styled@^11.0.0", "@emotion/styled@^11.10.4", "@emotion/styled@^11.11.0": version "11.11.0" - resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.11.0.tgz#26b75e1b5a1b7a629d7c0a8b708fbf5a9cdce346" + resolved "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz" integrity sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng== dependencies: "@babel/runtime" "^7.18.3" @@ -1010,39 +1010,39 @@ "@emotion/unitless@^0.8.1": version "0.8.1" - resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3" + resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz" integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ== "@emotion/use-insertion-effect-with-fallbacks@^1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963" + resolved "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz" integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw== "@emotion/utils@^1.2.1": version "1.2.1" - resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4" + resolved "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz" integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg== "@emotion/weak-memoize@^0.3.1": version "0.3.1" - resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6" + resolved "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz" integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww== "@eslint-community/eslint-utils@^4.2.0": version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz" integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== dependencies: eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.6.1": version "4.10.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" + resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz" integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== "@eslint/eslintrc@^2.1.4": version "2.1.4" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz" integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== dependencies: ajv "^6.12.4" @@ -1057,19 +1057,19 @@ "@eslint/js@8.57.0": version "8.57.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" + resolved "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz" integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== "@floating-ui/core@^1.0.0": version "1.6.0" - resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.0.tgz#fa41b87812a16bf123122bf945946bae3fdf7fc1" + resolved "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz" integrity sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g== dependencies: "@floating-ui/utils" "^0.2.1" "@floating-ui/dom@^1.2.1": version "1.6.3" - resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.3.tgz#954e46c1dd3ad48e49db9ada7218b0985cee75ef" + resolved "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz" integrity sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw== dependencies: "@floating-ui/core" "^1.0.0" @@ -1077,14 +1077,14 @@ "@floating-ui/react-dom@^1.3.0": version "1.3.0" - resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-1.3.0.tgz#4d35d416eb19811c2b0e9271100a6aa18c1579b3" + resolved "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-1.3.0.tgz" integrity sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g== dependencies: "@floating-ui/dom" "^1.2.1" "@floating-ui/react@^0.19.1": version "0.19.2" - resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.19.2.tgz#c6e4d2097ed0dca665a7c042ddf9cdecc95e9412" + resolved "https://registry.npmjs.org/@floating-ui/react/-/react-0.19.2.tgz" integrity sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w== dependencies: "@floating-ui/react-dom" "^1.3.0" @@ -1093,12 +1093,12 @@ "@floating-ui/utils@^0.2.0", "@floating-ui/utils@^0.2.1": version "0.2.1" - resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.1.tgz#16308cea045f0fc777b6ff20a9f25474dd8293d2" + resolved "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz" integrity sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q== "@humanwhocodes/config-array@^0.11.14": version "0.11.14" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz" integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== dependencies: "@humanwhocodes/object-schema" "^2.0.2" @@ -1107,17 +1107,17 @@ "@humanwhocodes/module-importer@^1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== "@humanwhocodes/object-schema@^2.0.2": version "2.0.2" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz" integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== "@isaacs/cliui@^8.0.2": version "8.0.2" - resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz" integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== dependencies: string-width "^5.1.2" @@ -1129,7 +1129,7 @@ "@jridgewell/gen-mapping@^0.3.2": version "0.3.4" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.4.tgz#9b18145d26cf33d08576cf4c7665b28554480ed7" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.4.tgz" integrity sha512-Oud2QPM5dHviZNn4y/WhhYKSXksv+1xLEIsNrAbGcFzUN3ubqWRFT5gwPchNc5NuzILOU4tPBDTZ4VwhL8Y7cw== dependencies: "@jridgewell/set-array" "^1.0.1" @@ -1138,22 +1138,22 @@ "@jridgewell/resolve-uri@^3.1.0": version "3.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz" integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== "@jridgewell/set-array@^1.0.1": version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== "@jridgewell/trace-mapping@^0.3.9": version "0.3.23" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.23.tgz#afc96847f3f07841477f303eed687707a5aacd80" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.23.tgz" integrity sha512-9/4foRoUKp8s96tSkh8DlAAc5A0Ty8vLXld+l9gjKKY6ckwI8G15f0hskGmuLZu78ZlGa1vtsfOa+lnB4vG6Jg== dependencies: "@jridgewell/resolve-uri" "^3.1.0" @@ -1161,14 +1161,14 @@ "@mantine/carousel@^6.0.21": version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/carousel/-/carousel-6.0.21.tgz#3e2a77e365014b314f90e8b474b350432c926640" + resolved "https://registry.npmjs.org/@mantine/carousel/-/carousel-6.0.21.tgz" integrity sha512-cQAQ5RlVhSrYA8aez/euzs5nQKcGcwxVTS/gf46GEZ0gcDJXlymZPbc2OopH/WDczEaMWOF7wz8R9+uG1hYNCg== dependencies: "@mantine/utils" "6.0.21" -"@mantine/core@^6.0.21": +"@mantine/core@^6.0.21", "@mantine/core@6.0.21": version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/core/-/core-6.0.21.tgz#6e3a1b8d0f6869518a644d5f5e3d55a5db7e1e51" + resolved "https://registry.npmjs.org/@mantine/core/-/core-6.0.21.tgz" integrity sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg== dependencies: "@floating-ui/react" "^0.19.1" @@ -1178,14 +1178,14 @@ react-remove-scroll "^2.5.5" react-textarea-autosize "8.3.4" -"@mantine/hooks@^6.0.21": +"@mantine/hooks@^6.0.21", "@mantine/hooks@6.0.21": version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/hooks/-/hooks-6.0.21.tgz#bc009d8380ad18455b90f3ddaf484de16a13da95" + resolved "https://registry.npmjs.org/@mantine/hooks/-/hooks-6.0.21.tgz" integrity sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew== "@mantine/next@^6.0.21": version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/next/-/next-6.0.21.tgz#22e3c9a7e43f3efaa865b3490961f700a85d66fe" + resolved "https://registry.npmjs.org/@mantine/next/-/next-6.0.21.tgz" integrity sha512-McaVZZsmUol3yY92mSJSgcMQKFST97pVxNtI7Z52YocyuTjPPFXmqxF/TFj24A7noh1wzvRCPjfd9HX66sY+iQ== dependencies: "@mantine/ssr" "6.0.21" @@ -1193,7 +1193,7 @@ "@mantine/ssr@6.0.21": version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/ssr/-/ssr-6.0.21.tgz#3e6f347af944324b01f16d852ec5850f6555ce5f" + resolved "https://registry.npmjs.org/@mantine/ssr/-/ssr-6.0.21.tgz" integrity sha512-TVPiz7VxbBntT42UFg4LCRqsv6HM5nvL5d2jBBbFcg9oztJ/5KVGhrtWbu2+kpq/uWWOpmE0sKDs3HQ/qr1PdQ== dependencies: "@mantine/styles" "6.0.21" @@ -1201,7 +1201,7 @@ "@mantine/styles@6.0.21": version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/styles/-/styles-6.0.21.tgz#8ea097fc76cbb3ed55f5cfd719d2f910aff5031b" + resolved "https://registry.npmjs.org/@mantine/styles/-/styles-6.0.21.tgz" integrity sha512-PVtL7XHUiD/B5/kZ/QvZOZZQQOj12QcRs3Q6nPoqaoPcOX5+S7bMZLMH0iLtcGq5OODYk0uxlvuJkOZGoPj8Mg== dependencies: clsx "1.1.1" @@ -1209,89 +1209,47 @@ "@mantine/utils@6.0.21": version "6.0.21" - resolved "https://registry.yarnpkg.com/@mantine/utils/-/utils-6.0.21.tgz#6185506e91cba3e308aaa8ea9ababc8e767995d6" + resolved "https://registry.npmjs.org/@mantine/utils/-/utils-6.0.21.tgz" integrity sha512-33RVDRop5jiWFao3HKd3Yp7A9mEq4HAJxJPTuYm1NkdqX6aTKOQK7wT8v8itVodBp+sb4cJK6ZVdD1UurK/txQ== "@mongodb-js/saslprep@^1.1.0": version "1.1.4" - resolved "https://registry.yarnpkg.com/@mongodb-js/saslprep/-/saslprep-1.1.4.tgz#24ec1c4915a65f5c506bb88c081731450d91bb1c" + resolved "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.4.tgz" integrity sha512-8zJ8N1x51xo9hwPh6AWnKdLGEC5N3lDa6kms1YHmFBoRhTpJR6HG8wWk0td1MVCu9cD4YBrvjZEtd5Obw0Fbnw== dependencies: sparse-bitfield "^3.0.3" -"@next/env@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/env/-/env-14.1.0.tgz#43d92ebb53bc0ae43dcc64fb4d418f8f17d7a341" - integrity sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw== +"@next/env@14.1.4": + version "14.1.4" + resolved "https://registry.npmjs.org/@next/env/-/env-14.1.4.tgz" + integrity sha512-e7X7bbn3Z6DWnDi75UWn+REgAbLEqxI8Tq2pkFOFAMpWAWApz/YCUhtWMWn410h8Q2fYiYL7Yg5OlxMOCfFjJQ== "@next/eslint-plugin-next@14.1.0": version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.0.tgz#29b041233fac7417e22eefa4146432d5cd910820" + resolved "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.0.tgz" integrity sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q== dependencies: glob "10.3.10" -"@next/swc-darwin-arm64@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.0.tgz#70a57c87ab1ae5aa963a3ba0f4e59e18f4ecea39" - integrity sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ== - -"@next/swc-darwin-x64@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.0.tgz#0863a22feae1540e83c249384b539069fef054e9" - integrity sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g== - -"@next/swc-linux-arm64-gnu@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.0.tgz#893da533d3fce4aec7116fe772d4f9b95232423c" - integrity sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ== - -"@next/swc-linux-arm64-musl@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.0.tgz#d81ddcf95916310b8b0e4ad32b637406564244c0" - integrity sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g== - -"@next/swc-linux-x64-gnu@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.0.tgz#18967f100ec19938354332dcb0268393cbacf581" - integrity sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ== - -"@next/swc-linux-x64-musl@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.0.tgz#77077cd4ba8dda8f349dc7ceb6230e68ee3293cf" - integrity sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg== - -"@next/swc-win32-arm64-msvc@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.0.tgz#5f0b8cf955644104621e6d7cc923cad3a4c5365a" - integrity sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ== - -"@next/swc-win32-ia32-msvc@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.0.tgz#21f4de1293ac5e5a168a412b139db5d3420a89d0" - integrity sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw== - -"@next/swc-win32-x64-msvc@14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.0.tgz#e561fb330466d41807123d932b365cf3d33ceba2" - integrity sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg== +"@next/swc-darwin-x64@14.1.4": + version "14.1.4" "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": +"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" @@ -1299,52 +1257,52 @@ "@pkgjs/parseargs@^0.11.0": version "0.11.0" - resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@popperjs/core@^2.6.0", "@popperjs/core@^2.9.3": +"@popperjs/core@^2.0.0", "@popperjs/core@^2.6.0", "@popperjs/core@^2.9.3": version "2.11.8" - resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" + resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz" integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== "@radix-ui/number@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/number/-/number-1.0.0.tgz#4c536161d0de750b3f5d55860fc3de46264f897b" + resolved "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.0.tgz" integrity sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/primitive@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.0.tgz#e1d8ef30b10ea10e69c76e896f608d9276352253" + resolved "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.0.tgz" integrity sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-compose-refs@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz#37595b1f16ec7f228d698590e78eeed18ff218ae" + resolved "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz" integrity sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-context@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.0.tgz#f38e30c5859a9fb5e9aa9a9da452ee3ed9e0aee0" + resolved "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.0.tgz" integrity sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-direction@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.0.0.tgz#a2e0b552352459ecf96342c79949dd833c1e6e45" + resolved "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.0.tgz" integrity sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-presence@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.0.0.tgz#814fe46df11f9a468808a6010e3f3ca7e0b2e84a" + resolved "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.0.tgz" integrity sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w== dependencies: "@babel/runtime" "^7.13.10" @@ -1353,7 +1311,7 @@ "@radix-ui/react-primitive@1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz#c1ebcce283dd2f02e4fbefdaa49d1cb13dbc990a" + resolved "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz" integrity sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA== dependencies: "@babel/runtime" "^7.13.10" @@ -1361,7 +1319,7 @@ "@radix-ui/react-scroll-area@1.0.2": version "1.0.2" - resolved "https://registry.yarnpkg.com/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz#26c906d351b56835c0301126b24574c9e9c7b93b" + resolved "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz" integrity sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg== dependencies: "@babel/runtime" "^7.13.10" @@ -1377,7 +1335,7 @@ "@radix-ui/react-slot@1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.1.tgz#e7868c669c974d649070e9ecbec0b367ee0b4d81" + resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz" integrity sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw== dependencies: "@babel/runtime" "^7.13.10" @@ -1385,38 +1343,72 @@ "@radix-ui/react-use-callback-ref@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz#9e7b8b6b4946fe3cbe8f748c82a2cce54e7b6a90" + resolved "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz" integrity sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-use-layout-effect@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz#2fc19e97223a81de64cd3ba1dc42ceffd82374dc" + resolved "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz" integrity sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ== dependencies: "@babel/runtime" "^7.13.10" +"@redis/bloom@1.2.0": + version "1.2.0" + resolved "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz" + integrity sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg== + +"@redis/client@^1.0.0", "@redis/client@1.5.14": + version "1.5.14" + resolved "https://registry.npmjs.org/@redis/client/-/client-1.5.14.tgz" + integrity sha512-YGn0GqsRBFUQxklhY7v562VMOP0DcmlrHHs3IV1mFE3cbxe31IITUkqhBcIhVSI/2JqtWAJXg5mjV4aU+zD0HA== + dependencies: + cluster-key-slot "1.1.2" + generic-pool "3.9.0" + yallist "4.0.0" + +"@redis/graph@1.1.1": + version "1.1.1" + resolved "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz" + integrity sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw== + +"@redis/json@1.0.6": + version "1.0.6" + resolved "https://registry.npmjs.org/@redis/json/-/json-1.0.6.tgz" + integrity sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw== + +"@redis/search@1.1.6": + version "1.1.6" + resolved "https://registry.npmjs.org/@redis/search/-/search-1.1.6.tgz" + integrity sha512-mZXCxbTYKBQ3M2lZnEddwEAks0Kc7nauire8q20oA0oA/LoA+E/b5Y5KZn232ztPb1FkIGqo12vh3Lf+Vw5iTw== + +"@redis/time-series@1.0.5": + version "1.0.5" + resolved "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.5.tgz" + integrity sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg== + "@rushstack/eslint-patch@^1.3.3": version "1.7.2" - resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz#2d4260033e199b3032a08b41348ac10de21c47e9" + resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz" integrity sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA== "@swc/helpers@0.5.2": version "0.5.2" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.2.tgz#85ea0c76450b61ad7d10a37050289eded783c27d" + resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz" integrity sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw== dependencies: tslib "^2.4.0" "@tootallnate/once@2": version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" + resolved "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz" integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== "@types/hoist-non-react-statics@^3.3.0": version "3.3.5" - resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz#dab7867ef789d87e2b4b0003c9d65c49cc44a494" + resolved "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz" integrity sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg== dependencies: "@types/react" "*" @@ -1424,60 +1416,60 @@ "@types/json5@^0.0.29": version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== "@types/lodash.mergewith@4.6.7": version "4.6.7" - resolved "https://registry.yarnpkg.com/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz#eaa65aa5872abdd282f271eae447b115b2757212" + resolved "https://registry.npmjs.org/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz" integrity sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A== dependencies: "@types/lodash" "*" "@types/lodash@*": version "4.14.202" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.202.tgz#f09dbd2fb082d507178b2f2a5c7e74bd72ff98f8" + resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz" integrity sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ== "@types/node@20.11.17": version "20.11.17" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.17.tgz#cdd642d0e62ef3a861f88ddbc2b61e32578a9292" + resolved "https://registry.npmjs.org/@types/node/-/node-20.11.17.tgz" integrity sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw== dependencies: undici-types "~5.26.4" "@types/p5@^1.7.6": version "1.7.6" - resolved "https://registry.yarnpkg.com/@types/p5/-/p5-1.7.6.tgz#f2ec2bb3cddaa40922afa5bb54b7903ce7e509ed" + resolved "https://registry.npmjs.org/@types/p5/-/p5-1.7.6.tgz" integrity sha512-6pLTOo0V3N5jZb5nTwjiv3lPHLK3Z/TjbhQUj8CTWXocUk1Z/f6OHTp3Pcwi1BhWnf5gqKUcyEb1gP0KIJuQgw== "@types/parse-json@^4.0.0": version "4.0.2" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz" integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== "@types/prop-types@*": version "15.7.11" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.11.tgz#2596fb352ee96a1379c657734d4b913a613ad563" + resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz" integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== "@types/react-beautiful-dnd@^13.1.8": version "13.1.8" - resolved "https://registry.yarnpkg.com/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.8.tgz#f52d3ea07e1e19159d6c3c4a48c8da3d855e60b4" + resolved "https://registry.npmjs.org/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.8.tgz" integrity sha512-E3TyFsro9pQuK4r8S/OL6G99eq7p8v29sX0PM7oT8Z+PJfZvSQTx4zTQbUJ+QZXioAF0e7TGBEcA1XhYhCweyQ== dependencies: "@types/react" "*" "@types/react-dom@18.2.19": version "18.2.19" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.19.tgz#b84b7c30c635a6c26c6a6dfbb599b2da9788be58" + resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.19.tgz" integrity sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA== dependencies: "@types/react" "*" "@types/react-redux@^7.1.20": version "7.1.33" - resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.33.tgz#53c5564f03f1ded90904e3c90f77e4bd4dc20b15" + resolved "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz" integrity sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg== dependencies: "@types/hoist-non-react-statics" "^3.3.0" @@ -1487,16 +1479,16 @@ "@types/react@*": version "18.2.58" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.58.tgz#22082d12898d11806f4a1aefb5583116a047493d" + resolved "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz" integrity sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" csstype "^3.0.2" -"@types/react@18.2.55": +"@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react@18.2.55": version "18.2.55" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.55.tgz#38141821b7084404b5013742bc4ae08e44da7a67" + resolved "https://registry.npmjs.org/@types/react/-/react-18.2.55.tgz" integrity sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA== dependencies: "@types/prop-types" "*" @@ -1505,24 +1497,24 @@ "@types/scheduler@*": version "0.16.8" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.8.tgz#ce5ace04cfeabe7ef87c0091e50752e36707deff" + resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz" integrity sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A== "@types/webidl-conversions@*": version "7.0.3" - resolved "https://registry.yarnpkg.com/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz#1306dbfa53768bcbcfc95a1c8cde367975581859" + resolved "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz" integrity sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA== "@types/whatwg-url@^11.0.2": version "11.0.4" - resolved "https://registry.yarnpkg.com/@types/whatwg-url/-/whatwg-url-11.0.4.tgz#ffed0dc8d89d91f62e3f368fcbda222a487c4f63" + resolved "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.4.tgz" integrity sha512-lXCmTWSHJvf0TRSO58nm978b8HJ/EdsSsEKLd3ODHFjo+3VGAyyTp4v50nWvwtzBxSMQrVOK7tcuN0zGPLICMw== dependencies: "@types/webidl-conversions" "*" "@typescript-eslint/parser@^5.4.2 || ^6.0.0": version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b" + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz" integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ== dependencies: "@typescript-eslint/scope-manager" "6.21.0" @@ -1533,7 +1525,7 @@ "@typescript-eslint/scope-manager@6.21.0": version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1" + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz" integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== dependencies: "@typescript-eslint/types" "6.21.0" @@ -1541,12 +1533,12 @@ "@typescript-eslint/types@6.21.0": version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d" + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz" integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== "@typescript-eslint/typescript-estree@6.21.0": version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46" + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz" integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== dependencies: "@typescript-eslint/types" "6.21.0" @@ -1560,7 +1552,7 @@ "@typescript-eslint/visitor-keys@6.21.0": version "6.21.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47" + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz" integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== dependencies: "@typescript-eslint/types" "6.21.0" @@ -1568,56 +1560,66 @@ "@ungap/structured-clone@^1.2.0": version "1.2.0" - resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz" integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== "@vygruppen/spor-accordion-react@^1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@vygruppen/spor-accordion-react/-/spor-accordion-react-1.0.1.tgz#8e335327d03086835d73635017780a9df4b176a5" + resolved "https://registry.npmjs.org/@vygruppen/spor-accordion-react/-/spor-accordion-react-1.0.1.tgz" integrity sha512-HakCVEknnh6w24QEp/maU01/m1XP6EZhN5Xq7ITw3EJWBNzfYZ2k4U/NM1+Xm+/NdLpsIMyuHWL8RS2o/PKW2g== "@zag-js/dom-query@0.16.0": version "0.16.0" - resolved "https://registry.yarnpkg.com/@zag-js/dom-query/-/dom-query-0.16.0.tgz#bca46bcd78f78c900064478646d95f9781ed098e" + resolved "https://registry.npmjs.org/@zag-js/dom-query/-/dom-query-0.16.0.tgz" integrity sha512-Oqhd6+biWyKnhKwFFuZrrf6lxBz2tX2pRQe6grUnYwO6HJ8BcbqZomy2lpOdr+3itlaUqx+Ywj5E5ZZDr/LBfQ== "@zag-js/element-size@0.10.5": version "0.10.5" - resolved "https://registry.yarnpkg.com/@zag-js/element-size/-/element-size-0.10.5.tgz#a24bad2eeb7e2c8709e32be5336e158e1a1a174f" + resolved "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.10.5.tgz" integrity sha512-uQre5IidULANvVkNOBQ1tfgwTQcGl4hliPSe69Fct1VfYb2Fd0jdAcGzqQgPhfrXFpR62MxLPB7erxJ/ngtL8w== "@zag-js/focus-visible@0.16.0": version "0.16.0" - resolved "https://registry.yarnpkg.com/@zag-js/focus-visible/-/focus-visible-0.16.0.tgz#c9e53e3dbab0f2649d04a489bb379f5800f4f069" + resolved "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-0.16.0.tgz" integrity sha512-a7U/HSopvQbrDU4GLerpqiMcHKEkQkNPeDZJWz38cw/6Upunh41GjHetq5TB84hxyCaDzJ6q2nEdNoBQfC0FKA== dependencies: "@zag-js/dom-query" "0.16.0" abab@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" + resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== acorn-jsx@^5.3.2: version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -acorn@^8.9.0: +"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8.9.0: version "8.11.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz" integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== +afinn-165-financialmarketnews@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/afinn-165-financialmarketnews/-/afinn-165-financialmarketnews-3.0.0.tgz" + integrity sha512-0g9A1S3ZomFIGDTzZ0t6xmv4AuokBvBmpes8htiyHpH7N4xDmvSQL6UxL/Zcs2ypRb3VwgCscaD8Q3zEawKYhw== + +afinn-165@^1.0.2: + version "1.0.4" + resolved "https://registry.npmjs.org/afinn-165/-/afinn-165-1.0.4.tgz" + integrity sha512-7+Wlx3BImrK0HiG6y3lU4xX7SpBPSSu8T9iguPMlaueRFxjbYwAQrp9lqZUuFikqKbd/en8lVREILvP2J80uJA== + agent-base@6: version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== dependencies: debug "4" ajv@^6.12.4: version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" @@ -1627,73 +1629,80 @@ ajv@^6.12.4: ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-regex@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz" integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" ansi-styles@^6.1.0: version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== any-promise@^1.0.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz" integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== anymatch@~3.1.2: version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" +apparatus@^0.0.10: + version "0.0.10" + resolved "https://registry.npmjs.org/apparatus/-/apparatus-0.0.10.tgz" + integrity sha512-KLy/ugo33KZA7nugtQ7O0E1c8kQ52N3IvD/XgIh4w/Nr28ypfkwDfA67F1ev4N1m5D+BOk1+b2dEJDfpj/VvZg== + dependencies: + sylvester ">= 0.0.8" + arg@^5.0.2: version "5.0.2" - resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== argparse@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== aria-hidden@^1.1.3, aria-hidden@^1.2.3: version "1.2.3" - resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.3.tgz#14aeb7fb692bbb72d69bebfa47279c1fd725e954" + resolved "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.3.tgz" integrity sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ== dependencies: tslib "^2.0.0" aria-query@^5.3.0: version "5.3.0" - resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz" integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== dependencies: dequal "^2.0.3" array-buffer-byte-length@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz" integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== dependencies: call-bind "^1.0.5" @@ -1701,7 +1710,7 @@ array-buffer-byte-length@^1.0.1: array-includes@^3.1.6, array-includes@^3.1.7: version "3.1.7" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.7.tgz#8cd2e01b26f7a3086cbc87271593fe921c62abda" + resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz" integrity sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ== dependencies: call-bind "^1.0.2" @@ -1712,12 +1721,12 @@ array-includes@^3.1.6, array-includes@^3.1.7: array-union@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== array.prototype.filter@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz#423771edeb417ff5914111fff4277ea0624c0d0e" + resolved "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz" integrity sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw== dependencies: call-bind "^1.0.2" @@ -1728,7 +1737,7 @@ array.prototype.filter@^1.0.3: array.prototype.findlastindex@^1.2.3: version "1.2.4" - resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz#d1c50f0b3a9da191981ff8942a0aedd82794404f" + resolved "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz" integrity sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ== dependencies: call-bind "^1.0.5" @@ -1739,7 +1748,7 @@ array.prototype.findlastindex@^1.2.3: array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: version "1.3.2" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" + resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz" integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== dependencies: call-bind "^1.0.2" @@ -1749,7 +1758,7 @@ array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: array.prototype.flatmap@^1.3.1, array.prototype.flatmap@^1.3.2: version "1.3.2" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" + resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz" integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== dependencies: call-bind "^1.0.2" @@ -1759,7 +1768,7 @@ array.prototype.flatmap@^1.3.1, array.prototype.flatmap@^1.3.2: array.prototype.tosorted@^1.1.1: version "1.1.3" - resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz#c8c89348337e51b8a3c48a9227f9ce93ceedcba8" + resolved "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz" integrity sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg== dependencies: call-bind "^1.0.5" @@ -1770,7 +1779,7 @@ array.prototype.tosorted@^1.1.1: arraybuffer.prototype.slice@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz" integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== dependencies: array-buffer-byte-length "^1.0.1" @@ -1784,24 +1793,24 @@ arraybuffer.prototype.slice@^1.0.3: ast-types-flow@^0.0.8: version "0.0.8" - resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6" + resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz" integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ== asynciterator.prototype@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62" + resolved "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz" integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== dependencies: has-symbols "^1.0.3" asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== autoprefixer@^10.4.17: version "10.4.17" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.17.tgz#35cd5695cbbe82f536a50fa025d561b01fdec8be" + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz" integrity sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg== dependencies: browserslist "^4.22.2" @@ -1813,26 +1822,26 @@ autoprefixer@^10.4.17: available-typed-arrays@^1.0.6, available-typed-arrays@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz" integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== dependencies: possible-typed-array-names "^1.0.0" axe-core@=4.7.0: version "4.7.0" - resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.0.tgz#34ba5a48a8b564f67e103f0aa5768d76e15bbbbf" + resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz" integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ== axobject-query@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" + resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz" integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== dependencies: dequal "^2.0.3" babel-plugin-macros@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" + resolved "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz" integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== dependencies: "@babel/runtime" "^7.12.5" @@ -1841,24 +1850,29 @@ babel-plugin-macros@^3.1.0: balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== binary-extensions@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== -"blockly@>= 10.0.0", blockly@^10.3.1: +binary-search@^1.3.5: + version "1.3.6" + resolved "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz" + integrity sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA== + +blockly@^10.3.1, "blockly@>= 10.0.0": version "10.4.2" - resolved "https://registry.yarnpkg.com/blockly/-/blockly-10.4.2.tgz#db3b16fdbe9168331249a7dc7a29e9c4230dcc60" + resolved "https://registry.npmjs.org/blockly/-/blockly-10.4.2.tgz" integrity sha512-oCJkHZD1HEPYPwnMk/sbmMmhW6UFe+3iH5yvDn3hy3HSVzCOunkw9H1Crb/MmlhhFdvjB5uWgGzQNAa2eWAV6A== dependencies: jsdom "22.1.0" brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -1866,21 +1880,21 @@ brace-expansion@^1.1.7: brace-expansion@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== dependencies: balanced-match "^1.0.0" braces@^3.0.2, braces@~3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" -browserslist@^4.22.2: +browserslist@^4.22.2, "browserslist@>= 4.21.0": version "4.23.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz" integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== dependencies: caniuse-lite "^1.0.30001587" @@ -1890,24 +1904,24 @@ browserslist@^4.22.2: bson@^6.2.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/bson/-/bson-6.3.0.tgz#d47acba525ba7d7eb0e816c10538bce26a337fe0" + resolved "https://registry.npmjs.org/bson/-/bson-6.3.0.tgz" integrity sha512-balJfqwwTBddxfnidJZagCBPP/f48zj9Sdp3OJswREOgsJzHiQSaOIAtApSgDQFYgHqAvFkp53AFSqjMDZoTFw== buffer-from@~0.1.1: version "0.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-0.1.2.tgz#15f4b9bcef012044df31142c14333caf6e0260d0" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz" integrity sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg== busboy@1.6.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + resolved "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz" integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== dependencies: streamsearch "^1.1.0" call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz" integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== dependencies: es-define-property "^1.0.0" @@ -1918,22 +1932,22 @@ call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: callsites@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase-css@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== caniuse-lite@^1.0.30001578, caniuse-lite@^1.0.30001579, caniuse-lite@^1.0.30001587: version "1.0.30001589" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001589.tgz#7ad6dba4c9bf6561aec8291976402339dc157dfb" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001589.tgz" integrity sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg== chalk@^2.4.2: version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -1942,7 +1956,7 @@ chalk@^2.4.2: chalk@^4.0.0: version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -1950,7 +1964,7 @@ chalk@^4.0.0: chokidar@^3.5.3: version "3.6.0" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz" integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== dependencies: anymatch "~3.1.2" @@ -1965,90 +1979,95 @@ chokidar@^3.5.3: classnames@^2.2.3: version "2.5.1" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b" + resolved "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz" integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow== client-only@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" + resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== clsx@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" + resolved "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz" integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== +cluster-key-slot@1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz" + integrity sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA== + color-convert@^1.9.0: version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - color-name@~1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + color2k@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/color2k/-/color2k-2.0.3.tgz#a771244f6b6285541c82aa65ff0a0c624046e533" + resolved "https://registry.npmjs.org/color2k/-/color2k-2.0.3.tgz" integrity sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog== combined-stream@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" commander@^4.0.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== compute-scroll-into-view@3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz#c418900a5c56e2b04b885b54995df164535962b1" + resolved "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz" integrity sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A== concat-map@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== convert-source-map@^1.5.0: version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== copy-to-clipboard@3.3.3: version "3.3.3" - resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz#55ac43a1db8ae639a4bd99511c148cdd1b83a1b0" + resolved "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz" integrity sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA== dependencies: toggle-selection "^1.0.6" core-util-is@~1.0.0: version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== cosmiconfig@^7.0.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz" integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== dependencies: "@types/parse-json" "^4.0.0" @@ -2059,83 +2078,83 @@ cosmiconfig@^7.0.0: cross-spawn@^7.0.0, cross-spawn@^7.0.2: version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" which "^2.0.1" -css-box-model@1.2.1, css-box-model@^1.2.0: +css-box-model@^1.2.0, css-box-model@1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/css-box-model/-/css-box-model-1.2.1.tgz#59951d3b81fd6b2074a62d49444415b0d2b4d7c1" + resolved "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz" integrity sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw== dependencies: tiny-invariant "^1.0.6" cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== cssstyle@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-3.0.0.tgz#17ca9c87d26eac764bb8cfd00583cff21ce0277a" + resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-3.0.0.tgz" integrity sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg== dependencies: rrweb-cssom "^0.6.0" -csstype@3.0.9: - version "3.0.9" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.9.tgz#6410af31b26bd0520933d02cbc64fce9ce3fbf0b" - integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== - csstype@^3.0.2, csstype@^3.1.2: version "3.1.3" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== +csstype@3.0.9: + version "3.0.9" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz" + integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== + damerau-levenshtein@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== data-urls@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-4.0.0.tgz#333a454eca6f9a5b7b0f1013ff89074c3f522dd4" + resolved "https://registry.npmjs.org/data-urls/-/data-urls-4.0.0.tgz" integrity sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g== dependencies: abab "^2.0.6" whatwg-mimetype "^3.0.0" whatwg-url "^12.0.0" -debug@4, debug@4.x, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - debug@^3.2.7: version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: ms "^2.1.1" +debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@4, debug@4.x: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + decimal.js@^10.4.3: version "10.4.3" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz" integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== deep-is@^0.1.3: version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== define-data-property@^1.0.1, define-data-property@^1.1.2, define-data-property@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== dependencies: es-define-property "^1.0.0" @@ -2144,7 +2163,7 @@ define-data-property@^1.0.1, define-data-property@^1.1.2, define-data-property@^ define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== dependencies: define-data-property "^1.0.1" @@ -2153,53 +2172,53 @@ define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== dequal@^2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz" integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== detect-node-es@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493" + resolved "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz" integrity sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ== didyoumean@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz" integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" dlv@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz" integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== doctrine@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== dependencies: esutils "^2.0.2" doctrine@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" dom-helpers@^5.0.1: version "5.2.1" - resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" + resolved "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz" integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== dependencies: "@babel/runtime" "^7.8.7" @@ -2207,7 +2226,7 @@ dom-helpers@^5.0.1: dom-serializer@^1.0.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz" integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== dependencies: domelementtype "^2.0.1" @@ -2216,79 +2235,79 @@ dom-serializer@^1.0.1: domelementtype@^2.0.1, domelementtype@^2.2.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== domexception@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" + resolved "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz" integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== dependencies: webidl-conversions "^7.0.0" -domhandler@4.3.1, domhandler@^4.2.0, domhandler@^4.2.2: +domhandler@^4.2.0, domhandler@^4.2.2, domhandler@4.3.1: version "4.3.1" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== dependencies: domelementtype "^2.2.0" domutils@^2.8.0: version "2.8.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== dependencies: dom-serializer "^1.0.1" domelementtype "^2.2.0" domhandler "^4.2.0" -dotenv@^16.4.4: +dotenv@^16.4.4, dotenv@^16.4.5: version "16.4.5" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz" integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== duplexer2@^0.1.2: version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + resolved "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz" integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== dependencies: readable-stream "^2.0.2" eastasianwidth@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== electron-to-chromium@^1.4.668: version "1.4.681" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.681.tgz#5f23fad8aa7e1f64cbb7dd9d15c7e39a1cd7e6e3" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.681.tgz" integrity sha512-1PpuqJUFWoXZ1E54m8bsLPVYwIVCRzvaL+n5cjigGga4z854abDnFRc+cTa2th4S79kyGqya/1xoR7h+Y5G5lg== -embla-carousel-react@^7.1.0: +embla-carousel-react@^7.0.0, embla-carousel-react@^7.1.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/embla-carousel-react/-/embla-carousel-react-7.1.0.tgz#e716f4df7fd31f7ca3e59a3e011158167bc3c468" + resolved "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-7.1.0.tgz" integrity sha512-tbYRPRZSDNd2QLNqYDcArAakGIxtUbhS7tkP0dGXktXHGgcX+3ji3VrOUTOftBiujZrMV8kRxtrRUe/1soloIQ== dependencies: embla-carousel "7.1.0" embla-carousel@7.1.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/embla-carousel/-/embla-carousel-7.1.0.tgz#c770dd3ade9285a97f5e3b6bbf705bc35ec0f9b5" + resolved "https://registry.npmjs.org/embla-carousel/-/embla-carousel-7.1.0.tgz" integrity sha512-Bh8Pa8NWzgugLkf8sAGexQlBCNDFaej5BXiKgQdRJ1mUC9NWBrw9Z23YVPVGkguWoz5LMjZXXFVGCobl3UPt/Q== emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== emoji-regex@^9.2.2: version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== enhanced-resolve@^5.12.0: version "5.15.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" + resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz" integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== dependencies: graceful-fs "^4.2.4" @@ -2296,29 +2315,29 @@ enhanced-resolve@^5.12.0: entities@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== entities@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/entities/-/entities-3.0.1.tgz#2b887ca62585e96db3903482d336c1006c3001d4" + resolved "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz" integrity sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q== entities@^4.4.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22.4: version "1.22.4" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.4.tgz#26eb2e7538c3271141f5754d31aabfdb215f27bf" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.4.tgz" integrity sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg== dependencies: array-buffer-byte-length "^1.0.1" @@ -2365,24 +2384,24 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22.4: es-array-method-boxes-properly@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" + resolved "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz" integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== es-define-property@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz" integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== dependencies: get-intrinsic "^1.2.4" es-errors@^1.0.0, es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== es-iterator-helpers@^1.0.12, es-iterator-helpers@^1.0.15: version "1.0.17" - resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz#123d1315780df15b34eb181022da43e734388bb8" + resolved "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz" integrity sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ== dependencies: asynciterator.prototype "^1.0.0" @@ -2403,7 +2422,7 @@ es-iterator-helpers@^1.0.12, es-iterator-helpers@^1.0.15: es-set-tostringtag@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz" integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== dependencies: get-intrinsic "^1.2.4" @@ -2412,14 +2431,14 @@ es-set-tostringtag@^2.0.2: es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz" integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== dependencies: hasown "^2.0.0" es-to-primitive@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== dependencies: is-callable "^1.1.4" @@ -2428,22 +2447,22 @@ es-to-primitive@^1.2.1: escalade@^3.1.1: version "3.1.2" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz" integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== eslint-config-next@^14.1.0: version "14.1.0" - resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-14.1.0.tgz#7e309d426b8afacaba3b32fdbb02ba220b6d0a97" + resolved "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.1.0.tgz" integrity sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg== dependencies: "@next/eslint-plugin-next" "14.1.0" @@ -2458,12 +2477,12 @@ eslint-config-next@^14.1.0: eslint-config-prettier@^9.1.0: version "9.1.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f" + resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz" integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.9: version "0.3.9" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz" integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== dependencies: debug "^3.2.7" @@ -2472,7 +2491,7 @@ eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.9: eslint-import-resolver-typescript@^3.5.2: version "3.6.1" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz#7b983680edd3f1c5bce1a5829ae0bc2d57fe9efa" + resolved "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz" integrity sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg== dependencies: debug "^4.3.4" @@ -2485,14 +2504,14 @@ eslint-import-resolver-typescript@^3.5.2: eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: version "2.8.0" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" + resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz" integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== dependencies: debug "^3.2.7" -eslint-plugin-import@^2.28.1: +eslint-plugin-import@*, eslint-plugin-import@^2.28.1: version "2.29.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643" + resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz" integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== dependencies: array-includes "^3.1.7" @@ -2515,7 +2534,7 @@ eslint-plugin-import@^2.28.1: eslint-plugin-jsx-a11y@^6.7.1: version "6.8.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz#2fa9c701d44fcd722b7c771ec322432857fcbad2" + resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz" integrity sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA== dependencies: "@babel/runtime" "^7.23.2" @@ -2537,12 +2556,12 @@ eslint-plugin-jsx-a11y@^6.7.1: "eslint-plugin-react-hooks@^4.5.0 || 5.0.0-canary-7118f5dd7-20230705": version "4.6.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" + resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz" integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== eslint-plugin-react@^7.33.2: version "7.33.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz#69ee09443ffc583927eafe86ffebb470ee737608" + resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz" integrity sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== dependencies: array-includes "^3.1.6" @@ -2564,7 +2583,7 @@ eslint-plugin-react@^7.33.2: eslint-scope@^7.2.2: version "7.2.2" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz" integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" @@ -2572,12 +2591,12 @@ eslint-scope@^7.2.2: eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: version "3.4.3" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@^8.56.0: +eslint@*, "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", "eslint@^7.0.0 || ^8.0.0", "eslint@^7.23.0 || ^8.0.0", eslint@^8.56.0, eslint@>=7.0.0: version "8.57.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" + resolved "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz" integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== dependencies: "@eslint-community/eslint-utils" "^4.2.0" @@ -2621,7 +2640,7 @@ eslint@^8.56.0: espree@^9.6.0, espree@^9.6.1: version "9.6.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + resolved "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz" integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: acorn "^8.9.0" @@ -2630,41 +2649,41 @@ espree@^9.6.0, espree@^9.6.1: esquery@^1.4.2: version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz" integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== dependencies: estraverse "^5.1.0" esrecurse@^4.3.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: estraverse "^5.2.0" estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== esutils@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== exenv@^1.2.0: version "1.2.2" - resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d" + resolved "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz" integrity sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw== fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.1: version "3.3.2" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz" integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -2675,43 +2694,43 @@ fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.1: fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-levenshtein@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fastq@^1.6.0: version "1.17.1" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz" integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: reusify "^1.0.4" file-entry-cache@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: flat-cache "^3.0.4" fill-range@^7.0.1: version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== dependencies: to-regex-range "^5.0.1" find-root@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" + resolved "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz" integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== find-up@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== dependencies: locate-path "^6.0.0" @@ -2719,7 +2738,7 @@ find-up@^5.0.0: flat-cache@^3.0.4: version "3.2.0" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz" integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== dependencies: flatted "^3.2.9" @@ -2728,26 +2747,26 @@ flat-cache@^3.0.4: flatted@^3.2.9: version "3.3.1" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz" integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== focus-lock@^1.3.2: version "1.3.3" - resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-1.3.3.tgz#b26711506025ec1ecdca69bb41fd10f0c15c4ae2" + resolved "https://registry.npmjs.org/focus-lock/-/focus-lock-1.3.3.tgz" integrity sha512-hfXkZha7Xt4RQtrL1HBfspAuIj89Y0fb6GX0dfJilb8S2G/lvL4akPAcHq6xoD2NuZnDMCnZL/zQesMyeu6Psg== dependencies: tslib "^2.0.3" for-each@^0.3.3: version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== dependencies: is-callable "^1.1.3" foreground-child@^3.1.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" + resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz" integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== dependencies: cross-spawn "^7.0.0" @@ -2755,7 +2774,7 @@ foreground-child@^3.1.0: form-data@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz" integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== dependencies: asynckit "^0.4.0" @@ -2764,12 +2783,12 @@ form-data@^4.0.0: fraction.js@^4.3.7: version "4.3.7" - resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz" integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== -framer-motion@^11.0.5: +framer-motion@^11.0.5, framer-motion@>=4.0.0, framer-motion@>6.0.0: version "11.0.6" - resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-11.0.6.tgz#97c3076d9d718486eb533b58b88db800139d5fc3" + resolved "https://registry.npmjs.org/framer-motion/-/framer-motion-11.0.6.tgz" integrity sha512-BpO3mWF8UwxzO3Ca5AmSkrg14QYTeJa9vKgoLOoBdBdTPj0e81i1dMwnX6EQJXRieUx20uiDBXq8bA6y7N6b8Q== dependencies: tslib "^2.4.0" @@ -2778,29 +2797,29 @@ framer-motion@^11.0.5: framesync@6.1.2: version "6.1.2" - resolved "https://registry.yarnpkg.com/framesync/-/framesync-6.1.2.tgz#755eff2fb5b8f3b4d2b266dd18121b300aefea27" + resolved "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz" integrity sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g== dependencies: tslib "2.4.0" fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@~2.3.2: version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== function.prototype.name@^1.1.5, function.prototype.name@^1.1.6: version "1.1.6" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz" integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== dependencies: call-bind "^1.0.2" @@ -2810,12 +2829,17 @@ function.prototype.name@^1.1.5, function.prototype.name@^1.1.6: functions-have-names@^1.2.3: version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== +generic-pool@3.9.0: + version "3.9.0" + resolved "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz" + integrity sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g== + get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz" integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== dependencies: es-errors "^1.3.0" @@ -2826,12 +2850,12 @@ get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@ get-nonce@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/get-nonce/-/get-nonce-1.0.1.tgz#fdf3f0278073820d2ce9426c18f07481b1e0cdf3" + resolved "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz" integrity sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q== get-symbol-description@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz" integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== dependencies: call-bind "^1.0.5" @@ -2840,28 +2864,28 @@ get-symbol-description@^1.0.2: get-tsconfig@^4.5.0: version "4.7.2" - resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.2.tgz#0dcd6fb330391d46332f4c6c1bf89a6514c2ddce" + resolved "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz" integrity sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A== dependencies: resolve-pkg-maps "^1.0.0" glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob-parent@^6.0.2: version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" -glob@10.3.10, glob@^10.3.10: +glob@^10.3.10, glob@10.3.10: version "10.3.10" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b" + resolved "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz" integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== dependencies: foreground-child "^3.1.0" @@ -2872,7 +2896,7 @@ glob@10.3.10, glob@^10.3.10: glob@^7.1.3: version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" @@ -2884,21 +2908,21 @@ glob@^7.1.3: globals@^13.19.0: version "13.24.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + resolved "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz" integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== dependencies: type-fest "^0.20.2" globalthis@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz" integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== dependencies: define-properties "^1.1.3" globby@^11.1.0: version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -2910,77 +2934,77 @@ globby@^11.1.0: gopd@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== dependencies: get-intrinsic "^1.1.3" graceful-fs@^4.2.11, graceful-fs@^4.2.4: version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== graphemer@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + resolved "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== has-bigints@^1.0.1, has-bigints@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1, has-property-descriptors@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: es-define-property "^1.0.0" has-proto@^1.0.1, has-proto@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz" integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== has-symbols@^1.0.2, has-symbols@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== has-tostringtag@^1.0.0, has-tostringtag@^1.0.1, has-tostringtag@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== dependencies: has-symbols "^1.0.3" hasown@^2.0.0, hasown@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.1.tgz#26f48f039de2c0f8d3356c223fb8d50253519faa" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz" integrity sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA== dependencies: function-bind "^1.1.2" hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2: version "3.3.2" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== dependencies: react-is "^16.7.0" html-dom-parser@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/html-dom-parser/-/html-dom-parser-1.2.0.tgz#8f689b835982ffbf245eda99730e92b8462c111e" + resolved "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.2.0.tgz" integrity sha512-2HIpFMvvffsXHFUFjso0M9LqM+1Lm22BF+Df2ba+7QHJXjk63pWChEnI6YG27eaWqUdfnh5/Vy+OXrNTtepRsg== dependencies: domhandler "4.3.1" @@ -2988,14 +3012,14 @@ html-dom-parser@1.2.0: html-encoding-sniffer@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" + resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz" integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== dependencies: whatwg-encoding "^2.0.0" html-react-parser@1.4.12: version "1.4.12" - resolved "https://registry.yarnpkg.com/html-react-parser/-/html-react-parser-1.4.12.tgz#5d4336e3853a75e4ac678c9815c15c58581bb30e" + resolved "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.12.tgz" integrity sha512-nqYQzr4uXh67G9ejAG7djupTHmQvSTgjY83zbXLRfKHJ0F06751jXx6WKSFARDdXxCngo2/7H4Rwtfeowql4gQ== dependencies: domhandler "4.3.1" @@ -3005,7 +3029,7 @@ html-react-parser@1.4.12: html-tokenize@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/html-tokenize/-/html-tokenize-2.0.1.tgz#c3b2ea6e2837d4f8c06693393e9d2a12c960be5f" + resolved "https://registry.npmjs.org/html-tokenize/-/html-tokenize-2.0.1.tgz" integrity sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w== dependencies: buffer-from "~0.1.1" @@ -3016,7 +3040,7 @@ html-tokenize@^2.0.0: htmlparser2@7.2.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-7.2.0.tgz#8817cdea38bbc324392a90b1990908e81a65f5a5" + resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz" integrity sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog== dependencies: domelementtype "^2.0.1" @@ -3026,7 +3050,7 @@ htmlparser2@7.2.0: http-proxy-agent@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== dependencies: "@tootallnate/once" "2" @@ -3035,7 +3059,7 @@ http-proxy-agent@^5.0.0: https-proxy-agent@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== dependencies: agent-base "6" @@ -3043,19 +3067,19 @@ https-proxy-agent@^5.0.1: iconv-lite@0.6.3: version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== dependencies: safer-buffer ">= 2.1.2 < 3.0.0" ignore@^5.2.0: version "5.3.1" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz" integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== import-fresh@^3.2.1: version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" @@ -3063,30 +3087,30 @@ import-fresh@^3.2.1: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== inflight@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" wrappy "1" -inherits@2, inherits@~2.0.1, inherits@~2.0.3: +inherits@~2.0.1, inherits@~2.0.3, inherits@2: version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== inline-style-parser@0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1" + resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz" integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== internal-slot@^1.0.5, internal-slot@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz" integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== dependencies: es-errors "^1.3.0" @@ -3095,14 +3119,19 @@ internal-slot@^1.0.5, internal-slot@^1.0.7: invariant@^2.2.4: version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" +is-any-array@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/is-any-array/-/is-any-array-2.0.1.tgz" + integrity sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ== + is-array-buffer@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz" integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== dependencies: call-bind "^1.0.2" @@ -3110,33 +3139,33 @@ is-array-buffer@^3.0.4: is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-async-function@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + resolved "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz" integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== dependencies: has-tostringtag "^1.0.0" is-bigint@^1.0.1: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== dependencies: has-bigints "^1.0.1" is-binary-path@~2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" is-boolean-object@^1.1.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== dependencies: call-bind "^1.0.2" @@ -3144,89 +3173,89 @@ is-boolean-object@^1.1.0: is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== is-core-module@^2.11.0, is-core-module@^2.13.0, is-core-module@^2.13.1: version "2.13.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz" integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: hasown "^2.0.0" is-date-object@^1.0.1, is-date-object@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== dependencies: has-tostringtag "^1.0.0" is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-finalizationregistry@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" + resolved "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz" integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== dependencies: call-bind "^1.0.2" is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-generator-function@^1.0.10: version "1.0.10" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz" integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== dependencies: has-tostringtag "^1.0.0" is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-map@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" + resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz" integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== is-negative-zero@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz" integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== is-number-object@^1.0.4: version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== dependencies: has-tostringtag "^1.0.0" is-number@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-path-inside@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-potential-custom-element-name@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" + resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== is-regex@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== dependencies: call-bind "^1.0.2" @@ -3234,80 +3263,80 @@ is-regex@^1.1.4: is-set@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" + resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz" integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== is-shared-array-buffer@^1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz" integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== dependencies: call-bind "^1.0.7" is-string@^1.0.5, is-string@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== dependencies: has-tostringtag "^1.0.0" is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== dependencies: has-symbols "^1.0.2" is-typed-array@^1.1.13: version "1.1.13" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz" integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== dependencies: which-typed-array "^1.1.14" is-weakmap@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" + resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz" integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== is-weakref@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== dependencies: call-bind "^1.0.2" is-weakset@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" + resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz" integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== dependencies: call-bind "^1.0.2" get-intrinsic "^1.1.1" -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== - isarray@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== isarray@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== + isexe@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== iterator.prototype@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0" + resolved "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz" integrity sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== dependencies: define-properties "^1.2.1" @@ -3318,7 +3347,7 @@ iterator.prototype@^1.1.2: jackspeak@^2.3.5: version "2.3.6" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" + resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz" integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== dependencies: "@isaacs/cliui" "^8.0.2" @@ -3327,24 +3356,24 @@ jackspeak@^2.3.5: jiti@^1.19.1: version "1.21.0" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + resolved "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz" integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" jsdom@22.1.0: version "22.1.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-22.1.0.tgz#0fca6d1a37fbeb7f4aac93d1090d782c56b611c8" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-22.1.0.tgz" integrity sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw== dependencies: abab "^2.0.6" @@ -3373,34 +3402,34 @@ jsdom@22.1.0: json-buffer@3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== json-parse-even-better-errors@^2.3.0: version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== json5@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + resolved "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz" integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== dependencies: minimist "^1.2.0" "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5: version "3.3.5" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" + resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz" integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== dependencies: array-includes "^3.1.6" @@ -3410,31 +3439,31 @@ json5@^1.0.2: kareem@2.5.1: version "2.5.1" - resolved "https://registry.yarnpkg.com/kareem/-/kareem-2.5.1.tgz#7b8203e11819a8e77a34b3517d3ead206764d15d" + resolved "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz" integrity sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA== keyv@^4.5.3: version "4.5.4" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz" integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== dependencies: json-buffer "3.0.1" language-subtag-registry@^0.3.20: version "0.3.22" - resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" + resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz" integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== language-tags@^1.0.9: version "1.0.9" - resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777" + resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz" integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA== dependencies: language-subtag-registry "^0.3.20" levn@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== dependencies: prelude-ls "^1.2.1" @@ -3442,73 +3471,83 @@ levn@^0.4.1: lilconfig@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz" integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== lilconfig@^3.0.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.1.tgz#9d8a246fa753106cfc205fd2d77042faca56e5e3" + resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz" integrity sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ== lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== locate-path@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== dependencies: p-locate "^5.0.0" lodash.merge@^4.6.2: version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== lodash.mergewith@4.6.2: version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" + resolved "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz" integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" "lru-cache@^9.1.1 || ^10.0.0": version "10.2.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz" integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q== +memjs@^1.3.2: + version "1.3.2" + resolved "https://registry.npmjs.org/memjs/-/memjs-1.3.2.tgz" + integrity sha512-qUEg2g8vxPe+zPn09KidjIStHPtoBO8Cttm8bgJFWWabbsjQ9Av9Ky+6UcvKx6ue0LLb/LEhtcyQpRyKfzeXcg== + memoize-one@^5.1.1: version "5.2.1" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" + resolved "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz" integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q== memory-pager@^1.0.2: version "1.5.0" - resolved "https://registry.yarnpkg.com/memory-pager/-/memory-pager-1.5.0.tgz#d8751655d22d384682741c972f2c3d6dfa3e66b5" + resolved "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz" integrity sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== micromatch@^4.0.4, micromatch@^4.0.5: version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== dependencies: braces "^3.0.2" @@ -3516,50 +3555,93 @@ micromatch@^4.0.4, micromatch@^4.0.5: mime-db@1.52.0: version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== mime-types@^2.1.12: version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -minimatch@9.0.3, minimatch@^9.0.1: +minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^9.0.1: version "9.0.3" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== dependencies: brace-expansion "^2.0.1" -minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== +minimatch@9.0.3: + version "9.0.3" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== dependencies: - brace-expansion "^1.1.7" + brace-expansion "^2.0.1" minimist@^1.2.0, minimist@^1.2.6, minimist@~1.2.5: version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== "minipass@^5.0.0 || ^6.0.2 || ^7.0.0": version "7.0.4" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" + resolved "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz" integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== +ml-array-mean@^1.1.6: + version "1.1.6" + resolved "https://registry.npmjs.org/ml-array-mean/-/ml-array-mean-1.1.6.tgz" + integrity sha512-MIdf7Zc8HznwIisyiJGRH9tRigg3Yf4FldW8DxKxpCCv/g5CafTw0RRu51nojVEOXuCQC7DRVVu5c7XXO/5joQ== + dependencies: + ml-array-sum "^1.1.6" + +ml-array-sum@^1.1.6: + version "1.1.6" + resolved "https://registry.npmjs.org/ml-array-sum/-/ml-array-sum-1.1.6.tgz" + integrity sha512-29mAh2GwH7ZmiRnup4UyibQZB9+ZLyMShvt4cH4eTK+cL2oEMIZFnSyB3SS8MlsTh6q/w/yh48KmqLxmovN4Dw== + dependencies: + is-any-array "^2.0.0" + +ml-distance-euclidean@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/ml-distance-euclidean/-/ml-distance-euclidean-2.0.0.tgz" + integrity sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q== + +ml-distance@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/ml-distance/-/ml-distance-4.0.1.tgz" + integrity sha512-feZ5ziXs01zhyFUUUeZV5hwc0f5JW0Sh0ckU1koZe/wdVkJdGxcP06KNQuF0WBTj8FttQUzcvQcpcrOp/XrlEw== + dependencies: + ml-array-mean "^1.1.6" + ml-distance-euclidean "^2.0.0" + ml-tree-similarity "^1.0.0" + +ml-tree-similarity@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/ml-tree-similarity/-/ml-tree-similarity-1.0.0.tgz" + integrity sha512-XJUyYqjSuUQkNQHMscr6tcjldsOoAekxADTplt40QKfwW6nd++1wHWV9AArl0Zvw/TIHgNaZZNvr8QGvE8wLRg== + dependencies: + binary-search "^1.3.5" + num-sort "^2.0.0" + mongo@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/mongo/-/mongo-0.1.0.tgz#c8af0f8df98d4894b772b37342987c3becf3718c" + resolved "https://registry.npmjs.org/mongo/-/mongo-0.1.0.tgz" integrity sha512-2MPq+GCNKhah0V/g/HIQI/S1h6Ycd87KPuXAITkeXWT6wncvABFxOaXdzCKlRvLSQRUkDimllrRrhoHUTD8usg== dependencies: mongodb "*" mongodb-connection-string-url@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.0.tgz#b4f87f92fd8593f3b9365f592515a06d304a1e9c" + resolved "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.0.tgz" integrity sha512-t1Vf+m1I5hC2M5RJx/7AtxgABy1cZmIPQRMXw+gEIPn/cZNF3Oiy+l0UIypUwVB5trcWHq3crg2g3uAR9aAwsQ== dependencies: "@types/whatwg-url" "^11.0.2" @@ -3567,16 +3649,16 @@ mongodb-connection-string-url@^3.0.0: mongodb@*, mongodb@6.3.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-6.3.0.tgz#ec9993b19f7ed2ea715b903fcac6171c9d1d38ca" + resolved "https://registry.npmjs.org/mongodb/-/mongodb-6.3.0.tgz" integrity sha512-tt0KuGjGtLUhLoU263+xvQmPHEGTw5LbcNC73EoFRYgSHwZt5tsoJC110hDyO1kjQzpgNrpdcSza9PknWN4LrA== dependencies: "@mongodb-js/saslprep" "^1.1.0" bson "^6.2.0" mongodb-connection-string-url "^3.0.0" -mongoose@^8.1.2: +mongoose@^8.1.2, mongoose@^8.2.0: version "8.2.0" - resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-8.2.0.tgz#dac98f1a5bfefad8656a0bb085789a2dc079631c" + resolved "https://registry.npmjs.org/mongoose/-/mongoose-8.2.0.tgz" integrity sha512-la93n6zCYRbPS+c5N9oTDAktvREy5OT9OCljp1Tah0y3+p8UPMTAoabWaLZMdzYruOtF9/9GRf6MasaZjiZP1A== dependencies: bson "^6.2.0" @@ -3589,29 +3671,29 @@ mongoose@^8.1.2: mpath@0.9.0: version "0.9.0" - resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.9.0.tgz#0c122fe107846e31fc58c75b09c35514b3871904" + resolved "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz" integrity sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew== mquery@5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/mquery/-/mquery-5.0.0.tgz#a95be5dfc610b23862df34a47d3e5d60e110695d" + resolved "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz" integrity sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg== dependencies: debug "4.x" +ms@^2.1.1, ms@2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + ms@2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3, ms@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - multipipe@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-1.0.2.tgz#cc13efd833c9cda99f224f868461b8e1a3fd939d" + resolved "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz" integrity sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ== dependencies: duplexer2 "^0.1.2" @@ -3619,7 +3701,7 @@ multipipe@^1.0.2: mz@^2.7.0: version "2.7.0" - resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== dependencies: any-promise "^1.0.0" @@ -3628,20 +3710,40 @@ mz@^2.7.0: nanoid@^3.3.6, nanoid@^3.3.7: version "3.3.7" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz" integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -next@latest: - version "14.1.0" - resolved "https://registry.yarnpkg.com/next/-/next-14.1.0.tgz#b31c0261ff9caa6b4a17c5af019ed77387174b69" - integrity sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q== - dependencies: - "@next/env" "14.1.0" +natural@^6.12.0: + version "6.12.0" + resolved "https://registry.npmjs.org/natural/-/natural-6.12.0.tgz" + integrity sha512-ZV/cuaxOvJ7CSxQRYHc6nlx7ql6hVPQc20N5ubdqVbotWnnqsNc+0/QG+ACIC3XPQ4rfrQrdC/1k47v1cSszTQ== + dependencies: + afinn-165 "^1.0.2" + afinn-165-financialmarketnews "^3.0.0" + apparatus "^0.0.10" + dotenv "^16.4.5" + memjs "^1.3.2" + mongoose "^8.2.0" + pg "^8.11.3" + redis "^4.6.13" + safe-stable-stringify "^2.2.0" + stopwords-iso "^1.1.0" + sylvester "^0.0.12" + underscore "^1.9.1" + uuid "^9.0.1" + wordnet-db "^3.1.11" + +next@*, next@latest: + version "14.1.4" + resolved "https://registry.npmjs.org/next/-/next-14.1.4.tgz" + integrity sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ== + dependencies: + "@next/env" "14.1.4" "@swc/helpers" "0.5.2" busboy "1.6.0" caniuse-lite "^1.0.30001579" @@ -3649,64 +3751,69 @@ next@latest: postcss "8.4.31" styled-jsx "5.1.1" optionalDependencies: - "@next/swc-darwin-arm64" "14.1.0" - "@next/swc-darwin-x64" "14.1.0" - "@next/swc-linux-arm64-gnu" "14.1.0" - "@next/swc-linux-arm64-musl" "14.1.0" - "@next/swc-linux-x64-gnu" "14.1.0" - "@next/swc-linux-x64-musl" "14.1.0" - "@next/swc-win32-arm64-msvc" "14.1.0" - "@next/swc-win32-ia32-msvc" "14.1.0" - "@next/swc-win32-x64-msvc" "14.1.0" + "@next/swc-darwin-arm64" "14.1.4" + "@next/swc-darwin-x64" "14.1.4" + "@next/swc-linux-arm64-gnu" "14.1.4" + "@next/swc-linux-arm64-musl" "14.1.4" + "@next/swc-linux-x64-gnu" "14.1.4" + "@next/swc-linux-x64-musl" "14.1.4" + "@next/swc-win32-arm64-msvc" "14.1.4" + "@next/swc-win32-ia32-msvc" "14.1.4" + "@next/swc-win32-x64-msvc" "14.1.4" node-releases@^2.0.14: version "2.0.14" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz" integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== normalize-range@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== +num-sort@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/num-sort/-/num-sort-2.1.0.tgz" + integrity sha512-1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg== + nwsapi@^2.2.4: version "2.2.7" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" + resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz" integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== object-hash@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== object-inspect@^1.13.1: version "1.13.1" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz" integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object-keys@~0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz" integrity sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw== object.assign@^4.1.4, object.assign@^4.1.5: version "4.1.5" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz" integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== dependencies: call-bind "^1.0.5" @@ -3716,7 +3823,7 @@ object.assign@^4.1.4, object.assign@^4.1.5: object.entries@^1.1.6, object.entries@^1.1.7: version "1.1.7" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.7.tgz#2b47760e2a2e3a752f39dd874655c61a7f03c131" + resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz" integrity sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA== dependencies: call-bind "^1.0.2" @@ -3725,7 +3832,7 @@ object.entries@^1.1.6, object.entries@^1.1.7: object.fromentries@^2.0.6, object.fromentries@^2.0.7: version "2.0.7" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.7.tgz#71e95f441e9a0ea6baf682ecaaf37fa2a8d7e616" + resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz" integrity sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA== dependencies: call-bind "^1.0.2" @@ -3734,7 +3841,7 @@ object.fromentries@^2.0.6, object.fromentries@^2.0.7: object.groupby@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.2.tgz#494800ff5bab78fd0eff2835ec859066e00192ec" + resolved "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz" integrity sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw== dependencies: array.prototype.filter "^1.0.3" @@ -3745,7 +3852,7 @@ object.groupby@^1.0.1: object.hasown@^1.1.2: version "1.1.3" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.3.tgz#6a5f2897bb4d3668b8e79364f98ccf971bda55ae" + resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz" integrity sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA== dependencies: define-properties "^1.2.0" @@ -3753,7 +3860,7 @@ object.hasown@^1.1.2: object.values@^1.1.6, object.values@^1.1.7: version "1.1.7" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.7.tgz#617ed13272e7e1071b43973aa1655d9291b8442a" + resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz" integrity sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng== dependencies: call-bind "^1.0.2" @@ -3762,14 +3869,14 @@ object.values@^1.1.6, object.values@^1.1.7: once@^1.3.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" optionator@^0.9.3: version "0.9.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz" integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: "@aashutoshrathi/word-wrap" "^1.2.3" @@ -3781,33 +3888,33 @@ optionator@^0.9.3: p-limit@^3.0.2: version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" p-locate@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== dependencies: p-limit "^3.0.2" p5@^1.9.0: version "1.9.0" - resolved "https://registry.yarnpkg.com/p5/-/p5-1.9.0.tgz#04c406ae683449106d514108648035b21aa850fb" + resolved "https://registry.npmjs.org/p5/-/p5-1.9.0.tgz" integrity sha512-+5/hz0ZokCDf7BMMAeemE7FIo7gFZK7ImL62acHLXZwerGjqj+171bnaAWj4aCFCx6fwysAr2U7/AKuPyPhehA== parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parse-json@^5.0.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" @@ -3817,34 +3924,34 @@ parse-json@^5.0.0: parse5@^7.1.2: version "7.1.2" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" + resolved "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz" integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== dependencies: entities "^4.4.0" path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^3.1.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-scurry@^1.10.1: version "1.10.1" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" + resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz" integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== dependencies: lru-cache "^9.1.1 || ^10.0.0" @@ -3852,37 +3959,93 @@ path-scurry@^1.10.1: path-type@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== +pg-cloudflare@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz" + integrity sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q== + +pg-connection-string@^2.6.4: + version "2.6.4" + resolved "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz" + integrity sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA== + +pg-int8@1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz" + integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== + +pg-pool@^3.6.2: + version "3.6.2" + resolved "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz" + integrity sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg== + +pg-protocol@^1.6.1: + version "1.6.1" + resolved "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz" + integrity sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg== + +pg-types@^2.1.0: + version "2.2.0" + resolved "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz" + integrity sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA== + dependencies: + pg-int8 "1.0.1" + postgres-array "~2.0.0" + postgres-bytea "~1.0.0" + postgres-date "~1.0.4" + postgres-interval "^1.1.0" + +pg@^8.11.3, pg@>=8.0: + version "8.11.5" + resolved "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz" + integrity sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw== + dependencies: + pg-connection-string "^2.6.4" + pg-pool "^3.6.2" + pg-protocol "^1.6.1" + pg-types "^2.1.0" + pgpass "1.x" + optionalDependencies: + pg-cloudflare "^1.1.1" + +pgpass@1.x: + version "1.0.5" + resolved "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz" + integrity sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug== + dependencies: + split2 "^4.1.0" + picocolors@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== pify@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== pirates@^4.0.1: version "4.0.6" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz" integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== possible-typed-array-names@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + resolved "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz" integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== postcss-import@^15.1.0: version "15.1.0" - resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz" integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== dependencies: postcss-value-parser "^4.0.0" @@ -3891,14 +4054,14 @@ postcss-import@^15.1.0: postcss-js@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz" integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== dependencies: camelcase-css "^2.0.1" postcss-load-config@^4.0.1: version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" + resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz" integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== dependencies: lilconfig "^3.0.0" @@ -3906,14 +4069,14 @@ postcss-load-config@^4.0.1: postcss-nested@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz" integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== dependencies: postcss-selector-parser "^6.0.11" postcss-selector-parser@^6.0.11: version "6.0.15" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz#11cc2b21eebc0b99ea374ffb9887174855a01535" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz" integrity sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw== dependencies: cssesc "^3.0.0" @@ -3921,45 +4084,67 @@ postcss-selector-parser@^6.0.11: postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== +postcss@^8.0.0, postcss@^8.1.0, postcss@^8.2.14, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.35, postcss@>=8.0.9: + version "8.4.35" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz" + integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.0" + source-map-js "^1.0.2" + postcss@8.4.31: version "8.4.31" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz" integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== dependencies: nanoid "^3.3.6" picocolors "^1.0.0" source-map-js "^1.0.2" -postcss@^8.4.23, postcss@^8.4.35: - version "8.4.35" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.35.tgz#60997775689ce09011edf083a549cea44aabe2f7" - integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== +postgres-array@~2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz" + integrity sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA== + +postgres-bytea@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz" + integrity sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w== + +postgres-date@~1.0.4: + version "1.0.7" + resolved "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz" + integrity sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q== + +postgres-interval@^1.1.0: + version "1.2.0" + resolved "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz" + integrity sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ== dependencies: - nanoid "^3.3.7" - picocolors "^1.0.0" - source-map-js "^1.0.2" + xtend "^4.0.0" prelude-ls@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== prettier@^3.2.5: version "3.2.5" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.5.tgz#e52bc3090586e824964a8813b09aba6233b28368" + resolved "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz" integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A== process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== dependencies: loose-envify "^1.4.0" @@ -3968,32 +4153,32 @@ prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.2, prop-types@^15.7.2, psl@^1.1.33: version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.0: version "2.3.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== querystringify@^2.1.1: version "2.2.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + resolved "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== raf-schd@^4.0.2: version "4.0.3" - resolved "https://registry.yarnpkg.com/raf-schd/-/raf-schd-4.0.3.tgz#5d6c34ef46f8b2a0e880a8fcdb743efc5bfdbc1a" + resolved "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz" integrity sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ== react-beautiful-dnd@^13.1.1: version "13.1.1" - resolved "https://registry.yarnpkg.com/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz#b0f3087a5840920abf8bb2325f1ffa46d8c4d0a2" + resolved "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz" integrity sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ== dependencies: "@babel/runtime" "^7.9.2" @@ -4006,7 +4191,7 @@ react-beautiful-dnd@^13.1.1: react-blockly@^8.1.1: version "8.1.1" - resolved "https://registry.yarnpkg.com/react-blockly/-/react-blockly-8.1.1.tgz#55240d4d6e51fa4a04aab23b88b054eb0e4b96c8" + resolved "https://registry.npmjs.org/react-blockly/-/react-blockly-8.1.1.tgz" integrity sha512-MOT9c/1D3ItO7vwUAlWvgDEJT7alNkR5MCgwE160EK2hFka4DRPHOUXBGnxRod8OVY+hdvMUnmiHUVTrYODwXQ== dependencies: blockly ">= 10.0.0" @@ -4014,27 +4199,27 @@ react-blockly@^8.1.1: react-clientside-effect@^1.2.6: version "1.2.6" - resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz#29f9b14e944a376b03fb650eed2a754dd128ea3a" + resolved "https://registry.npmjs.org/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz" integrity sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg== dependencies: "@babel/runtime" "^7.12.13" -react-dom@18.2.0: +"react-dom@^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", "react-dom@^16.3.0 || ^17.0.0", "react-dom@^16.8 || ^17.0 || ^18.0", "react-dom@^16.8.0 || ^17 || ^18", "react-dom@^16.8.5 || ^17.0.0 || ^18.0.0", react-dom@^18.0.0, react-dom@^18.2.0, react-dom@>=16.6.0, react-dom@>=16.8.0, react-dom@>=18, react-dom@18.2.0: version "18.2.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== dependencies: loose-envify "^1.1.0" scheduler "^0.23.0" -react-fast-compare@3.2.2, react-fast-compare@^3.0.1: +react-fast-compare@^3.0.1, react-fast-compare@3.2.2: version "3.2.2" - resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" + resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz" integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== react-focus-lock@^2.9.4: version "2.11.1" - resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.11.1.tgz#9d532b29107c760c68ddadc1baff1a36e69c1fe0" + resolved "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-2.11.1.tgz" integrity sha512-IXLwnTBrLTlKTpASZXqqXJ8oymWrgAlOfuuDYN4XCuN1YJ72dwX198UCaF1QqGUk5C3QOnlMik//n3ufcfe8Ig== dependencies: "@babel/runtime" "^7.0.0" @@ -4046,22 +4231,22 @@ react-focus-lock@^2.9.4: react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== react-is@^17.0.2: version "17.0.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== react-lifecycles-compat@^3.0.0: version "3.0.4" - resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" + resolved "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== react-modal@^3.16.1: version "3.16.1" - resolved "https://registry.yarnpkg.com/react-modal/-/react-modal-3.16.1.tgz#34018528fc206561b1a5467fc3beeaddafb39b2b" + resolved "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz" integrity sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg== dependencies: exenv "^1.2.0" @@ -4071,7 +4256,7 @@ react-modal@^3.16.1: react-popper@^2.2.4: version "2.3.0" - resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.3.0.tgz#17891c620e1320dce318bad9fede46a5f71c70ba" + resolved "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz" integrity sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q== dependencies: react-fast-compare "^3.0.1" @@ -4079,12 +4264,12 @@ react-popper@^2.2.4: react-property@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/react-property/-/react-property-2.0.0.tgz#2156ba9d85fa4741faf1918b38efc1eae3c6a136" + resolved "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz" integrity sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw== react-redux@^7.2.0: version "7.2.9" - resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.9.tgz#09488fbb9416a4efe3735b7235055442b042481d" + resolved "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz" integrity sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ== dependencies: "@babel/runtime" "^7.15.4" @@ -4096,7 +4281,7 @@ react-redux@^7.2.0: react-remove-scroll-bar@^2.3.4: version "2.3.5" - resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.5.tgz#cd2543b3ed7716c7c5b446342d21b0e0b303f47c" + resolved "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.5.tgz" integrity sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw== dependencies: react-style-singleton "^2.2.1" @@ -4104,7 +4289,7 @@ react-remove-scroll-bar@^2.3.4: react-remove-scroll@^2.5.5, react-remove-scroll@^2.5.6: version "2.5.7" - resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz#15a1fd038e8497f65a695bf26a4a57970cac1ccb" + resolved "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz" integrity sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA== dependencies: react-remove-scroll-bar "^2.3.4" @@ -4115,7 +4300,7 @@ react-remove-scroll@^2.5.5, react-remove-scroll@^2.5.6: react-sortable-hoc@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz#f6780d8aa4b922a21f3e754af542f032677078b7" + resolved "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz" integrity sha512-JZUw7hBsAHXK7PTyErJyI7SopSBFRcFHDjWW5SWjcugY0i6iH7f+eJkY8cJmGMlZ1C9xz1J3Vjz0plFpavVeRg== dependencies: "@babel/runtime" "^7.2.0" @@ -4124,7 +4309,7 @@ react-sortable-hoc@^2.0.0: react-style-singleton@^2.2.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.1.tgz#f99e420492b2d8f34d38308ff660b60d0b1205b4" + resolved "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz" integrity sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g== dependencies: get-nonce "^1.0.0" @@ -4133,7 +4318,7 @@ react-style-singleton@^2.2.1: react-textarea-autosize@8.3.4: version "8.3.4" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz#270a343de7ad350534141b02c9cb78903e553524" + resolved "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz" integrity sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ== dependencies: "@babel/runtime" "^7.10.2" @@ -4142,7 +4327,7 @@ react-textarea-autosize@8.3.4: react-transition-group@^4.4.2: version "4.4.5" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" + resolved "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz" integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== dependencies: "@babel/runtime" "^7.5.5" @@ -4150,16 +4335,16 @@ react-transition-group@^4.4.2: loose-envify "^1.4.0" prop-types "^15.6.2" -react@18.2.0: +"react@^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", "react@^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react@^16.3.0 || ^17.0.0", "react@^16.8 || ^17.0 || ^18.0", "react@^16.8.0 || ^17 || ^18", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.1 || ^18.0.0", "react@^16.8.3 || ^17 || ^18", "react@^16.8.5 || ^17.0.0 || ^18.0.0", react@^18.0.0, react@^18.2.0, "react@>= 16.8.0 || 17.x.x || ^18.0.0-0", react@>=16.6.0, react@>=16.8.0, react@>=18, "react@0.14 || 15 || 16 || 17 || 18", react@18.2.0: version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz" integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== dependencies: loose-envify "^1.1.0" reactstrap@^9.2.2: version "9.2.2" - resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-9.2.2.tgz#d3a062cb1492a9cf6ed4684698044fa1996350c9" + resolved "https://registry.npmjs.org/reactstrap/-/reactstrap-9.2.2.tgz" integrity sha512-4KroiGOdqZLAnMGzHjpErW3G7bLB+QbKzzMLIDXydPIV0y74lpdL7WtXHkLWAGInd97WCPNx4+R0NQDPyzIfhw== dependencies: "@babel/runtime" "^7.12.5" @@ -4171,14 +4356,14 @@ reactstrap@^9.2.2: read-cache@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== dependencies: pify "^2.3.0" readable-stream@^2.0.2: version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" @@ -4191,7 +4376,7 @@ readable-stream@^2.0.2: readable-stream@~1.0.17, readable-stream@~1.0.27-1: version "1.0.34" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz" integrity sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg== dependencies: core-util-is "~1.0.0" @@ -4201,21 +4386,33 @@ readable-stream@~1.0.17, readable-stream@~1.0.27-1: readdirp@~3.6.0: version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: picomatch "^2.2.1" +redis@^4.6.13: + version "4.6.13" + resolved "https://registry.npmjs.org/redis/-/redis-4.6.13.tgz" + integrity sha512-MHgkS4B+sPjCXpf+HfdetBwbRz6vCtsceTmw1pHNYJAsYxrfpOP6dz+piJWGos8wqG7qb3vj/Rrc5qOlmInUuA== + dependencies: + "@redis/bloom" "1.2.0" + "@redis/client" "1.5.14" + "@redis/graph" "1.1.1" + "@redis/json" "1.0.6" + "@redis/search" "1.1.6" + "@redis/time-series" "1.0.5" + redux@^4.0.0, redux@^4.0.4: version "4.2.1" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.1.tgz#c08f4306826c49b5e9dc901dee0452ea8fce6197" + resolved "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz" integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== dependencies: "@babel/runtime" "^7.9.2" reflect.getprototypeof@^1.0.4: version "1.0.5" - resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz#e0bd28b597518f16edaf9c0e292c631eb13e0674" + resolved "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz" integrity sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ== dependencies: call-bind "^1.0.5" @@ -4228,12 +4425,12 @@ reflect.getprototypeof@^1.0.4: regenerator-runtime@^0.14.0: version "0.14.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz" integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.2: version "1.5.2" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz" integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== dependencies: call-bind "^1.0.6" @@ -4243,22 +4440,22 @@ regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.2: requires-port@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== resolve-from@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== resolve-pkg-maps@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + resolved "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz" integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== resolve@^1.1.7, resolve@^1.19.0, resolve@^1.22.2, resolve@^1.22.4: version "1.22.8" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz" integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: is-core-module "^2.13.0" @@ -4267,7 +4464,7 @@ resolve@^1.1.7, resolve@^1.19.0, resolve@^1.22.2, resolve@^1.22.4: resolve@^2.0.0-next.4: version "2.0.0-next.5" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" + resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz" integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== dependencies: is-core-module "^2.13.0" @@ -4276,31 +4473,31 @@ resolve@^2.0.0-next.4: reusify@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" rrweb-cssom@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz#ed298055b97cbddcdeb278f904857629dec5e0e1" + resolved "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz" integrity sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw== run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" safe-array-concat@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.0.tgz#8d0cae9cb806d6d1c06e08ab13d847293ebe0692" + resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz" integrity sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg== dependencies: call-bind "^1.0.5" @@ -4310,52 +4507,57 @@ safe-array-concat@^1.1.0: safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== safe-regex-test@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz" integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== dependencies: call-bind "^1.0.6" es-errors "^1.3.0" is-regex "^1.1.4" +safe-stable-stringify@^2.2.0: + version "2.4.3" + resolved "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz" + integrity sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g== + "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== saxes@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5" + resolved "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz" integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== dependencies: xmlchars "^2.2.0" scheduler@^0.23.0: version "0.23.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz" integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== dependencies: loose-envify "^1.1.0" semver@^6.3.1: version "6.3.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== semver@^7.5.4: version "7.6.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + resolved "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz" integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== dependencies: lru-cache "^6.0.0" set-function-length@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.1.tgz#47cc5945f2c771e2cf261c6737cf9684a2a5e425" + resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz" integrity sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g== dependencies: define-data-property "^1.1.2" @@ -4367,7 +4569,7 @@ set-function-length@^1.2.1: set-function-name@^2.0.0, set-function-name@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + resolved "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz" integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== dependencies: define-data-property "^1.1.4" @@ -4377,19 +4579,19 @@ set-function-name@^2.0.0, set-function-name@^2.0.1: shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== side-channel@^1.0.4: version "1.0.5" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.5.tgz#9a84546599b48909fb6af1211708d23b1946221b" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz" integrity sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ== dependencies: call-bind "^1.0.6" @@ -4399,45 +4601,75 @@ side-channel@^1.0.4: sift@16.0.1: version "16.0.1" - resolved "https://registry.yarnpkg.com/sift/-/sift-16.0.1.tgz#e9c2ccc72191585008cf3e36fc447b2d2633a053" + resolved "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz" integrity sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ== signal-exit@^4.0.1: version "4.1.0" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== slash@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== source-map-js@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== source-map@^0.5.7: version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== sparse-bitfield@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz#ff4ae6e68656056ba4b3e792ab3334d38273ca11" + resolved "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz" integrity sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ== dependencies: memory-pager "^1.0.2" +split2@^4.1.0: + version "4.2.0" + resolved "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz" + integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== + +stopwords-iso@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/stopwords-iso/-/stopwords-iso-1.1.0.tgz" + integrity sha512-I6GPS/E0zyieHehMRPQcqkiBMJKGgLta+1hREixhoLPqEA0AlVFiC43dl8uPpmkkeRdDMzYRWFWk5/l9x7nmNg== + streamsearch@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz" integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0: - name string-width-cjs +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +"string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0: + version "4.2.3" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -4446,7 +4678,7 @@ streamsearch@^1.1.0: string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: eastasianwidth "^0.2.0" @@ -4455,7 +4687,7 @@ string-width@^5.0.1, string-width@^5.1.2: string.prototype.matchall@^4.0.8: version "4.0.10" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz#a1553eb532221d4180c51581d6072cd65d1ee100" + resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz" integrity sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ== dependencies: call-bind "^1.0.2" @@ -4470,7 +4702,7 @@ string.prototype.matchall@^4.0.8: string.prototype.trim@^1.2.8: version "1.2.8" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd" + resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz" integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ== dependencies: call-bind "^1.0.2" @@ -4479,7 +4711,7 @@ string.prototype.trim@^1.2.8: string.prototype.trimend@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz" integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA== dependencies: call-bind "^1.0.2" @@ -4488,78 +4720,73 @@ string.prototype.trimend@^1.0.7: string.prototype.trimstart@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz" integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg== dependencies: call-bind "^1.0.2" define-properties "^1.2.0" es-abstract "^1.22.1" -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: - safe-buffer "~5.1.0" + ansi-regex "^5.0.1" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^7.0.1: version "7.1.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== dependencies: ansi-regex "^6.0.1" strip-bom@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== style-to-js@1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/style-to-js/-/style-to-js-1.1.0.tgz#631cbb20fce204019b3aa1fcb5b69d951ceac4ac" + resolved "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.0.tgz" integrity sha512-1OqefPDxGrlMwcbfpsTVRyzwdhr4W0uxYQzeA2F1CBc8WG04udg2+ybRnvh3XYL4TdHQrCahLtax2jc8xaE6rA== dependencies: style-to-object "0.3.0" style-to-object@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46" + resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz" integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== dependencies: inline-style-parser "0.1.1" styled-jsx@5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" + resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz" integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== dependencies: client-only "0.0.1" stylis@4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" + resolved "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz" integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== sucrase@^3.32.0: version "3.35.0" - resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" + resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz" integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== dependencies: "@jridgewell/gen-mapping" "^0.3.2" @@ -4572,36 +4799,41 @@ sucrase@^3.32.0: supports-color@^5.3.0: version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== +sylvester@^0.0.12, "sylvester@>= 0.0.8": + version "0.0.12" + resolved "https://registry.npmjs.org/sylvester/-/sylvester-0.0.12.tgz" + integrity sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw== + symbol-tree@^3.2.4: version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== tabbable@^6.0.1: version "6.2.0" - resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" + resolved "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz" integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== tailwindcss@^3.4.1: version "3.4.1" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.1.tgz#f512ca5d1dd4c9503c7d3d28a968f1ad8f5c839d" + resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz" integrity sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA== dependencies: "@alloc/quick-lru" "^5.2.0" @@ -4629,66 +4861,66 @@ tailwindcss@^3.4.1: tapable@^2.2.0: version "2.2.1" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== text-table@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== thenify-all@^1.0.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz" integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== dependencies: thenify ">= 3.1.0 < 4" "thenify@>= 3.1.0 < 4": version "3.3.1" - resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz" integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== dependencies: any-promise "^1.0.0" +through@^2.3.8: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + through2@~0.4.1: version "0.4.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-0.4.2.tgz#dbf5866031151ec8352bb6c4db64a2292a840b9b" + resolved "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz" integrity sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ== dependencies: readable-stream "~1.0.17" xtend "~2.1.1" -through@^2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - tiny-invariant@^1.0.6: version "1.3.3" - resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" + resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz" integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" toggle-selection@^1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" + resolved "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz" integrity sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ== tough-cookie@^4.1.2: version "4.1.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz" integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== dependencies: psl "^1.1.33" @@ -4698,24 +4930,24 @@ tough-cookie@^4.1.2: tr46@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-4.1.1.tgz#281a758dcc82aeb4fe38c7dfe4d11a395aac8469" + resolved "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz" integrity sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw== dependencies: punycode "^2.3.0" ts-api-utils@^1.0.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.2.1.tgz#f716c7e027494629485b21c0df6180f4d08f5e8b" + resolved "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz" integrity sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA== ts-interface-checker@^0.1.9: version "0.1.13" - resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + resolved "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz" integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== tsconfig-paths@^3.15.0: version "3.15.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz" integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== dependencies: "@types/json5" "^0.0.29" @@ -4723,31 +4955,31 @@ tsconfig-paths@^3.15.0: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" - integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== - tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: version "2.6.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== +tslib@2.4.0: + version "2.4.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== dependencies: prelude-ls "^1.2.1" type-fest@^0.20.2: version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== typed-array-buffer@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz" integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== dependencies: call-bind "^1.0.7" @@ -4756,7 +4988,7 @@ typed-array-buffer@^1.0.1: typed-array-byte-length@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz" integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== dependencies: call-bind "^1.0.7" @@ -4767,7 +4999,7 @@ typed-array-byte-length@^1.0.0: typed-array-byte-offset@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" + resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz" integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== dependencies: available-typed-arrays "^1.0.7" @@ -4779,7 +5011,7 @@ typed-array-byte-offset@^1.0.0: typed-array-length@^1.0.4: version "1.0.5" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.5.tgz#57d44da160296d8663fd63180a1802ebf25905d5" + resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.5.tgz" integrity sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA== dependencies: call-bind "^1.0.7" @@ -4789,14 +5021,14 @@ typed-array-length@^1.0.4: is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" -typescript@5.3.3: - version "5.3.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" - integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== +typescript@^5.4.4, typescript@>=3.3.1, typescript@>=4.2.0: + version "5.4.4" + resolved "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz" + integrity sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw== unbox-primitive@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== dependencies: call-bind "^1.0.2" @@ -4804,19 +5036,24 @@ unbox-primitive@^1.0.2: has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" +underscore@^1.9.1: + version "1.13.6" + resolved "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz" + integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== + undici-types@~5.26.4: version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== universalify@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + resolved "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz" integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== update-browserslist-db@^1.0.13: version "1.0.13" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz" integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== dependencies: escalade "^3.1.1" @@ -4824,14 +5061,14 @@ update-browserslist-db@^1.0.13: uri-js@^4.2.2: version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" url-parse@^1.5.3: version "1.5.10" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz" integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== dependencies: querystringify "^2.1.1" @@ -4839,36 +5076,36 @@ url-parse@^1.5.3: use-callback-ref@^1.3.0: version "1.3.1" - resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.1.tgz#9be64c3902cbd72b07fe55e56408ae3a26036fd0" + resolved "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.1.tgz" integrity sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ== dependencies: tslib "^2.0.0" use-composed-ref@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.3.0.tgz#3d8104db34b7b264030a9d916c5e94fbe280dbda" + resolved "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz" integrity sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ== use-isomorphic-layout-effect@^1.1.1: version "1.1.2" - resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb" + resolved "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz" integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== use-latest@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.2.1.tgz#d13dfb4b08c28e3e33991546a2cee53e14038cf2" + resolved "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz" integrity sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw== dependencies: use-isomorphic-layout-effect "^1.1.1" use-memo-one@^1.1.1: version "1.1.3" - resolved "https://registry.yarnpkg.com/use-memo-one/-/use-memo-one-1.1.3.tgz#2fd2e43a2169eabc7496960ace8c79efef975e99" + resolved "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz" integrity sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ== use-sidecar@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.2.tgz#2f43126ba2d7d7e117aa5855e5d8f0276dfe73c2" + resolved "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz" integrity sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw== dependencies: detect-node-es "^1.1.0" @@ -4876,43 +5113,48 @@ use-sidecar@^1.1.2: util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== +uuid@^9.0.1: + version "9.0.1" + resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz" + integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== + w3c-xmlserializer@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" + resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz" integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== dependencies: xml-name-validator "^4.0.0" warning@^4.0.2, warning@^4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" + resolved "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz" integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== dependencies: loose-envify "^1.0.0" webidl-conversions@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz" integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== whatwg-encoding@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" + resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz" integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== dependencies: iconv-lite "0.6.3" whatwg-mimetype@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" + resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz" integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== whatwg-url@^12.0.0, whatwg-url@^12.0.1: version "12.0.1" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-12.0.1.tgz#fd7bcc71192e7c3a2a97b9a8d6b094853ed8773c" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-12.0.1.tgz" integrity sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ== dependencies: tr46 "^4.1.1" @@ -4920,7 +5162,7 @@ whatwg-url@^12.0.0, whatwg-url@^12.0.1: whatwg-url@^13.0.0: version "13.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-13.0.0.tgz#b7b536aca48306394a34e44bda8e99f332410f8f" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz" integrity sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig== dependencies: tr46 "^4.1.1" @@ -4928,7 +5170,7 @@ whatwg-url@^13.0.0: which-boxed-primitive@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== dependencies: is-bigint "^1.0.1" @@ -4939,7 +5181,7 @@ which-boxed-primitive@^1.0.2: which-builtin-type@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" + resolved "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz" integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== dependencies: function.prototype.name "^1.1.5" @@ -4957,7 +5199,7 @@ which-builtin-type@^1.1.3: which-collection@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" + resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz" integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== dependencies: is-map "^2.0.1" @@ -4967,7 +5209,7 @@ which-collection@^1.0.1: which-typed-array@^1.1.14, which-typed-array@^1.1.9: version "1.1.14" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.14.tgz#1f78a111aee1e131ca66164d8bdc3ab062c95a06" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz" integrity sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg== dependencies: available-typed-arrays "^1.0.6" @@ -4978,14 +5220,19 @@ which-typed-array@^1.1.14, which-typed-array@^1.1.9: which@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" +wordnet-db@^3.1.11: + version "3.1.14" + resolved "https://registry.npmjs.org/wordnet-db/-/wordnet-db-3.1.14.tgz" + integrity sha512-zVyFsvE+mq9MCmwXUWHIcpfbrHHClZWZiVOzKSxNJruIcFn2RbY55zkhiAMMxM8zCVSmtNiViq8FsAZSFpMYag== + "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -4994,7 +5241,7 @@ which@^2.0.1: wrap-ansi@^8.1.0: version "8.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== dependencies: ansi-styles "^6.1.0" @@ -5003,47 +5250,52 @@ wrap-ansi@^8.1.0: wrappy@1: version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== ws@^8.13.0: version "8.16.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4" + resolved "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz" integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== xml-name-validator@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" + resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== xmlchars@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== +xtend@^4.0.0: + version "4.0.2" + resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + xtend@~2.1.1: version "2.1.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" + resolved "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz" integrity sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ== dependencies: object-keys "~0.4.0" -yallist@^4.0.0: +yallist@^4.0.0, yallist@4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^1.10.0: version "1.10.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== yaml@^2.3.4: version "2.4.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.0.tgz#2376db1083d157f4b3a452995803dbcf43b08140" + resolved "https://registry.npmjs.org/yaml/-/yaml-2.4.0.tgz" integrity sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ== yocto-queue@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== From 5f0bda5ddb6948c61b05405fe8189edb415694ae Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 8 Apr 2024 00:47:09 -0500 Subject: [PATCH 076/111] display suggestion base on insight" --- components/diagnosis/SuggestedIssues.tsx | 38 +++++++++++++----------- lib/TFIDF.js | 37 ++++++++++++----------- next.config.js | 8 +++++ package-lock.json | 30 +++++++++++++++++++ package.json | 1 + yarn.lock | 29 +++++++++++++++++- 6 files changed, 106 insertions(+), 37 deletions(-) diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index a1c3a47..9f71175 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -1,34 +1,36 @@ -import React from 'react'; -import {useState, useEffect} from 'react'; +import React, { useState, useEffect } from 'react'; import styles from './SuggestedIssues.module.css'; -// import { exec } from 'child_process'; +import { getTopSimilarIssues } from '../../lib/TFIDF.js'; interface Props { insight: string; } const SuggestedIssues: React.FC = ({insight}) => { - const [result, setResult] = useState(''); + const [result, setResult] = useState([]); - // const runPythonScript = (input) => { - // exec('python lib/TFIDF.py "${input}"', (error, stdout, stderr) => { - // if (error) { - // console.error(`Error executing Python script: ${error}`); - // return; - // } - // setResult(stdout); - // }); - // }; + useEffect(() => { + const fetchSimilarIssues = async () => { + if (insight){ + const topSimilarIssues = await getTopSimilarIssues(insight); + setResult(topSimilarIssues); + } + }; -// useEffect(() => { -// // Run the TFIDF script whenever insight changes -// runPythonScript(insight); -// }, [insight]); + fetchSimilarIssues(); + }, [insight]); return (

          Suggested Issues

          Insight: {insight}

          - {/*

          Result: {result}

          */} +
          + {result.map((issue, index) => ( +
          +

          {issue.title}

          +

          Similarity: {issue.similarity}

          +
          + ))} +
          ); }; diff --git a/lib/TFIDF.js b/lib/TFIDF.js index 3659b94..0ed40d4 100644 --- a/lib/TFIDF.js +++ b/lib/TFIDF.js @@ -1,8 +1,6 @@ const natural = require('natural'); const _ = require('lodash'); const { ENGLISH_STOP_WORDS } = require('./stopWords.js'); -stopwords = ENGLISH_STOP_WORDS; -console.log(stopwords.join(', ')) function preprocess(text) { return text.toLowerCase(); @@ -15,7 +13,16 @@ function cosineSimilarity(vectorA, vectorB) { return dotProduct / (magnitudeA * magnitudeB); } -function getTopSimilarIssues(mentorNote, issues, topN = 3) { +function getTopSimilarIssues(mentorNote, topN = 3) { + const issues = [ + { title: "students not understanding some core part of the conceptual approach and it's really affecting what they are doing practically", + description: "students have gaps of understanding in their conceptual approach so that it's difficult to advance their practical design. Some common signals include can't articulate some part of their conceptual approach and vagueness in conceptual understanding." }, + { title: "students being too hard on themselves", + description: "students put a lot of pressure on themselves to work more and deliver, sometimes feeling bad from failing to meet a pre-establish goal or letting others down. They often have a high standard for themselves. Some common signals are being a perfectionist, being stressed or anxious, and having fear of failure." }, + { title: "student not planning with clear deliverables", + description: "when students plan their sprint, they don't have a clear deliverable in mind such as a prototype, user journey, or a section of the canvases that would clearly show how they addressed their riskiest risk. Some common signals are story with empty purpose/deliverable in sprint log, their idea of what form of deliverable would showcase their new understanding is undeveloped or vague." } + ]; + mentorNote = preprocess(mentorNote); const issueDescriptions = issues.map(issue => preprocess(issue.description + issue.title)); @@ -30,8 +37,8 @@ function getTopSimilarIssues(mentorNote, issues, topN = 3) { // Compute TF-IDF vectors const tfidfMatrix = documents.map(doc => { const terms = doc.match(/\b\w+\b/g); // Regular expression to match words - const uniqueTerms = terms.filter(term => !stopwords.includes(term)); // find unique terms - const vectorTerms = vectorizer.listTerms(0).filter(term => !stopwords.includes(term.term)); // Exclude stopwords from vectorizer + const uniqueTerms = terms.filter(term => !ENGLISH_STOP_WORDS.includes(term)); // find unique terms + const vectorTerms = vectorizer.listTerms(0).filter(term => !ENGLISH_STOP_WORDS.includes(term.term)); // Exclude stopwords from vectorizer const vector = vectorTerms.map(term => { return { term: term.term, tfidf: uniqueTerms.includes(term.term) ? term.tfidf : 0 }; }); @@ -66,16 +73,10 @@ function getTopSimilarIssues(mentorNote, issues, topN = 3) { return topSimilarIssues; } -const issues = [ - { title: "students not understanding some core part of the conceptual approach and it's really affecting what they are doing practically", - description: "students have gaps of understanding in their conceptual approach so that it's difficult to advance their practical design. Some common signals include can't articulate some part of their conceptual approach and vagueness in conceptual understanding." }, - { title: "students being too hard on themselves", - description: "students put a lot of pressure on themselves to work more and deliver, sometimes feeling bad from failing to meet a pre-establish goal or letting others down. They often have a high standard for themselves. Some common signals are being a perfectionist, being stressed or anxious, and having fear of failure." }, - { title: "student not planning with clear deliverables", - description: "when students plan their sprint, they don't have a clear deliverable in mind such as a prototype, user journey, or a section of the canvases that would clearly show how they addressed their riskiest risk. Some common signals are story with empty purpose/deliverable in sprint log, their idea of what form of deliverable would showcase their new understanding is undeveloped or vague." } -]; -const mentorNote = "Ella being too hard on herself and not focusing on risks (when everything looks like one) - Ended up over focusing on what happened in an ineffective user test - Freaked out about a poor user test and that drove a lot of her attention"; -// const mentorNote = "Purpose missing because they are still not explicit about what milestones they want to hit --- the deliverables are unclear too so it's all related? Not having a clear sense of what the deliverable should actually be or look like" - -const topSimilarIssues = getTopSimilarIssues(mentorNote, issues); -console.log("Top similar issues:", topSimilarIssues); \ No newline at end of file +module.exports = { getTopSimilarIssues }; + +// const mentorNote = "Ella being too hard on herself and not focusing on risks (when everything looks like one) - Ended up over focusing on what happened in an ineffective user test - Freaked out about a poor user test and that drove a lot of her attention"; +// // const mentorNote = "Purpose missing because they are still not explicit about what milestones they want to hit --- the deliverables are unclear too so it's all related? Not having a clear sense of what the deliverable should actually be or look like" + +// const topSimilarIssues = getTopSimilarIssues(mentorNote); +// console.log("Top similar issues:", topSimilarIssues); \ No newline at end of file diff --git a/next.config.js b/next.config.js index cacab59..b50b369 100644 --- a/next.config.js +++ b/next.config.js @@ -4,4 +4,12 @@ module.exports = { typescript: { ignoreBuildErrors: true, }, + webpack: (config, { isServer }) => { + if (!isServer) { + config.resolve.fallback = { + fs: false + }; + } + return config; + } }; diff --git a/package-lock.json b/package-lock.json index c58fb2d..9691a26 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,6 +27,7 @@ "mongoose": "^8.1.2", "natural": "^6.12.0", "next": "latest", + "node-tfidf": "^0.0.2", "p5": "^1.9.0", "react": "18.2.0", "react-beautiful-dnd": "^13.1.1", @@ -6614,6 +6615,30 @@ "dev": true, "license": "MIT" }, + "node_modules/node-tfidf": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/node-tfidf/-/node-tfidf-0.0.2.tgz", + "integrity": "sha512-y80oOzzNQKQCulteh1YS7Qz6ggEfdsZHhemWhAuCCXzagIeYBHJw/U4V0YidRfYm/97PHBqS2zkBlGHDclBnSw==", + "dependencies": { + "node-vntokenizer": "0.0.1", + "underscore": "^1.8.3", + "vietnamese-stopwords": "0.0.2" + } + }, + "node_modules/node-vntokenizer": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/node-vntokenizer/-/node-vntokenizer-0.0.1.tgz", + "integrity": "sha512-0eabk8RaKk0DfMozNJOdbJzcB34KWqet7FgCBVdvuVHcaFiQ//XPX2s2CntMjbbc5CMtgTKuWSm2uxyyj3AXWg==", + "dependencies": { + "lodash": "^3.10.1", + "underscore": "^1.8.3" + } + }, + "node_modules/node-vntokenizer/node_modules/lodash": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", + "integrity": "sha512-9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ==" + }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", @@ -9001,6 +9026,11 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/vietnamese-stopwords": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/vietnamese-stopwords/-/vietnamese-stopwords-0.0.2.tgz", + "integrity": "sha512-4kbrxAi+sRTWKR0bsn0xLTBhSPYwN3QEaLAfdTymHNjz+mD8NBIWtTdKJjV+YvLsrlWxY+8FuS17nPSMAZa2vg==" + }, "node_modules/w3c-xmlserializer": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", diff --git a/package.json b/package.json index a4305a5..dd5fd03 100644 --- a/package.json +++ b/package.json @@ -32,6 +32,7 @@ "mongoose": "^8.1.2", "natural": "^6.12.0", "next": "latest", + "node-tfidf": "^0.0.2", "p5": "^1.9.0", "react": "18.2.0", "react-beautiful-dnd": "^13.1.1", diff --git a/yarn.lock b/yarn.lock index a1a1413..d14e42f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3501,6 +3501,11 @@ lodash.mergewith@4.6.2: resolved "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz" integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== +lodash@^3.10.1: + version "3.10.1" + resolved "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" + integrity sha512-9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ== + lodash@^4.17.21: version "4.17.21" resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" @@ -3766,6 +3771,23 @@ node-releases@^2.0.14: resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz" integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== +node-tfidf@^0.0.2: + version "0.0.2" + resolved "https://registry.npmjs.org/node-tfidf/-/node-tfidf-0.0.2.tgz" + integrity sha512-y80oOzzNQKQCulteh1YS7Qz6ggEfdsZHhemWhAuCCXzagIeYBHJw/U4V0YidRfYm/97PHBqS2zkBlGHDclBnSw== + dependencies: + node-vntokenizer "0.0.1" + underscore "^1.8.3" + vietnamese-stopwords "0.0.2" + +node-vntokenizer@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/node-vntokenizer/-/node-vntokenizer-0.0.1.tgz" + integrity sha512-0eabk8RaKk0DfMozNJOdbJzcB34KWqet7FgCBVdvuVHcaFiQ//XPX2s2CntMjbbc5CMtgTKuWSm2uxyyj3AXWg== + dependencies: + lodash "^3.10.1" + underscore "^1.8.3" + normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" @@ -5036,7 +5058,7 @@ unbox-primitive@^1.0.2: has-symbols "^1.0.3" which-boxed-primitive "^1.0.2" -underscore@^1.9.1: +underscore@^1.8.3, underscore@^1.9.1: version "1.13.6" resolved "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz" integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== @@ -5121,6 +5143,11 @@ uuid@^9.0.1: resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz" integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== +vietnamese-stopwords@0.0.2: + version "0.0.2" + resolved "https://registry.npmjs.org/vietnamese-stopwords/-/vietnamese-stopwords-0.0.2.tgz" + integrity sha512-4kbrxAi+sRTWKR0bsn0xLTBhSPYwN3QEaLAfdTymHNjz+mD8NBIWtTdKJjV+YvLsrlWxY+8FuS17nPSMAZa2vg== + w3c-xmlserializer@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz" From 4e363b98383e109b8990ecd2af6fd23ee1597f51 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 8 Apr 2024 14:56:39 -0500 Subject: [PATCH 077/111] saving textareas --- components/diagnosis/Insight.tsx | 10 +- components/diagnosis/Signal.module.css | 8 + components/diagnosis/Signal.tsx | 20 ++- ....module.css => SuggestionNotes.module.css} | 0 .../{Notes.tsx => SuggestionNotes.tsx} | 11 +- pages/api/test/update_response.js | 13 +- pages/response.tsx | 155 ++++++------------ 7 files changed, 82 insertions(+), 135 deletions(-) rename components/diagnosis/{Notes.module.css => SuggestionNotes.module.css} (100%) rename components/diagnosis/{Notes.tsx => SuggestionNotes.tsx} (75%) diff --git a/components/diagnosis/Insight.tsx b/components/diagnosis/Insight.tsx index 8ae1cf5..8b57a1f 100644 --- a/components/diagnosis/Insight.tsx +++ b/components/diagnosis/Insight.tsx @@ -2,13 +2,13 @@ import React, { useState, useEffect, ChangeEvent } from 'react'; import styles from './Insight.module.css'; interface Props { - plan: string; - setPlan: (content: string) => void; + insight: string; + setInsight: (content: string) => void; } -const Insight: React.FC = ({ plan, setPlan }) => { +const Insight: React.FC = ({ insight, setInsight }) => { const handleInputChange = (event: ChangeEvent) => { - setPlan(event.target.value); + setInsight(event.target.value); }; return ( @@ -17,7 +17,7 @@ const Insight: React.FC = ({ plan, setPlan }) => {

          Please write down some insights you have about the situation

          diff --git a/components/diagnosis/Signal.module.css b/components/diagnosis/Signal.module.css index 7a5e688..451dda2 100644 --- a/components/diagnosis/Signal.module.css +++ b/components/diagnosis/Signal.module.css @@ -8,4 +8,12 @@ font-size: 1.5rem; font-weight: bold; margin-bottom: 0.5rem; + } + + .textArea { + width: 100%; + background-color: #e5e7eb; + height: 60px; + padding: 10px; + box-sizing: border-box; } \ No newline at end of file diff --git a/components/diagnosis/Signal.tsx b/components/diagnosis/Signal.tsx index 7f5051b..0303bc2 100644 --- a/components/diagnosis/Signal.tsx +++ b/components/diagnosis/Signal.tsx @@ -2,22 +2,32 @@ import React, { useState, useEffect } from 'react'; import styles from './Signal.module.css'; interface SignalProps { - content: string; + signal: string; title: string; project: string; } -const Signal: React.FC = ({ content, title, project}) => { +const Signal: React.FC = ({signal, title, project, setSignal}) => { + + const handleInputChange = (event: ChangeEvent) => { + setSignal(event.target.value); + }; + useEffect(() => { }, []); return (
          -

          Signal Debrief

          +

          Signal Debrief-{project}

          What issue would you like to talk about during SIG today?

          - +
          ); }; -export default Signal; +export default Signal; \ No newline at end of file diff --git a/components/diagnosis/Notes.module.css b/components/diagnosis/SuggestionNotes.module.css similarity index 100% rename from components/diagnosis/Notes.module.css rename to components/diagnosis/SuggestionNotes.module.css diff --git a/components/diagnosis/Notes.tsx b/components/diagnosis/SuggestionNotes.tsx similarity index 75% rename from components/diagnosis/Notes.tsx rename to components/diagnosis/SuggestionNotes.tsx index ef7d41a..0e94076 100644 --- a/components/diagnosis/Notes.tsx +++ b/components/diagnosis/SuggestionNotes.tsx @@ -1,14 +1,9 @@ import React, { useState, useEffect, ChangeEvent } from 'react'; import styles from './GamePlan.module.css'; -interface Props { - plan: string; - setPlan: (content: string) => void; -} - -const Notes: React.FC = ({ plan, setPlan }) => { +const Notes: React.FC = ({ notes, setNotes }) => { const handleInputChange = (event: ChangeEvent) => { - setPlan(event.target.value); + setNotes(event.target.value); }; return ( @@ -17,7 +12,7 @@ const Notes: React.FC = ({ plan, setPlan }) => {

          Do you think the suggested issues are relevant to the situation?

          diff --git a/pages/api/test/update_response.js b/pages/api/test/update_response.js index 557403d..84eb513 100644 --- a/pages/api/test/update_response.js +++ b/pages/api/test/update_response.js @@ -4,24 +4,19 @@ import { ObjectId } from 'mongodb'; export default async function updateResponse(req, res) { if (req.method === 'PUT') { try { - const { _id, gen_context, hypothesisList, description, initial_hunch, game_plan, p5Canvas } = + const { _id, signal, hypothesisList, insight, notes} = req.body; - const genContextObject = JSON.parse(gen_context); const hypothesisListObject = JSON.parse(hypothesisList); - const canvasObject = JSON.parse(p5Canvas); // const rcListObject = JSON.parse(rcs); const updatedResponse = await connectMongo({ findAndModify: 'responses', query: { _id: new ObjectId(_id) }, update: { $set: { - gen_context: genContextObject, + signal: signal, hypothesisList: hypothesisListObject, - description: description, - initial_hunch: initial_hunch, - game_plan: game_plan, - p5Canvas: canvasObject, - // rcs: rcListObject, + insight: insight, + notes: notes, }, }, new: true, diff --git a/pages/response.tsx b/pages/response.tsx index 497ab98..66063c5 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -14,7 +14,7 @@ import Context from '../components/diagnosis/DiagContext'; import InitialHunch from '../components/diagnosis/InitialHunch'; import GamePlan from '../components/diagnosis/GamePlan'; import Insight from '../components/diagnosis/Insight'; -import Notes from '../components/diagnosis/Notes'; +import SuggestionNotes from '../components/diagnosis/SuggestionNotes'; import SuggestedIssues from '../components/diagnosis/SuggestedIssues'; import Guidelines from '../components/diagnosis/Guidelines'; import HypothesisList from '../components/diagnosis/HypothesisList'; @@ -22,36 +22,26 @@ import getComputedOrganizationalObjectsForProject from '../pages/api/test/get_OS import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; const Response: NextPage = ({ - sigName, projName, - description, - gen_context, - initial_hunch, - game_plan, - detector, + Notes, + insightNotes, + signalNotes, + title, root_causes, id, - context_lib, - hypothesisList, - canvasState, - insightState, - notesState, + hypothesisList }) => { const [items, setItems] = useState(root_causes); - const [problemContent, setProblemContent] = useState(description); - const [context, setContext] = useState(gen_context); - const [hunch, setHunch] = useState(initial_hunch); - const [plan, setPlan] = useState(game_plan); - const [notes, setNotes] = useState(notesState); - const [insight, setInsight] = useState(insightState); + const [signal, setSignal] = useState(signalNotes); + const [notes, setNotes] = useState(Notes); + const [insight, setInsight] = useState(insightNotes); const defaultHypothesis = { title: 'First Hunch', content: 'fill in your first hunch here!', }; const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); - const [canvas, setCanvas] = useState(canvasState || []); - const updateResponse = async (desc) => { + const updateResponse = async () => { try { const response = await fetch('/api/test/update_response', { method: 'PUT', @@ -60,15 +50,12 @@ const Response: NextPage = ({ }, body: JSON.stringify({ _id: id, - gen_context: JSON.stringify(context), + signal: signal, hypothesisList: JSON.stringify(hypos), - description: desc, - initial_hunch: hunch, - game_plan: plan, - p5Canvas: JSON.stringify(canvas), - notesState: JSON.stringify(notes), - insightState: JSON.stringify(insight), - // rcs: JSON.stringify(rclist), + insight: insight, + notes: notes, + // hypothesisList: [ { titleHypo: 'str', contentHypo: 'str' } ], + // rcModelTabs: [ { tabID: 'str', selectedRCModel: 'str' } ], }), }); if (response.ok) { @@ -99,26 +86,22 @@ const Response: NextPage = ({ }; useEffect(() => { - updateResponse(problemContent); - }, [context, hypos, hunch, plan, problemContent, canvas, notes, insight]); + updateResponse(); + }, [signal, notes, insight]); return (
          - - {/* */} +
          - +
          - {/* */} - {/* */} - +
          - {/* */}
          @@ -139,89 +122,45 @@ export const getServerSideProps: GetServerSideProps = async (context) => { }); data = data[0]; + let rcModelTabs = data['rcModelTabs'] let root_causes = []; - for (let i = 0; i < data.rcs.length; i++) { - let root_cause = data.rcs[i]; - let context = []; - // let context = root_cause.context - // if (!Array.isArray(context)) { - // context = [context] - // } - root_causes.push({ - id: i, - rc: root_cause.rc, - question: root_cause.question, - context: context, - strategy: root_cause.strategy, - disabled: false, - checked: false, - }); - } - - let initial_hunch = data.initial_hunch; - let game_plan = data.game_plan; - let description = data.description; - let gen_context = data.gen_context; - // let insightState = data.insightState; - // let notesState = data.notesState; - if (!Array.isArray(gen_context)) { - gen_context = [gen_context]; - } - - let triggers = data.triggers; - if (!Array.isArray(triggers)) { - triggers = [triggers]; + for (let i = 0; i < rcModelTabs.length; i++){ + for (let j = 0; j < rcModelTabs[i].rcs.length; j++) { + let root_cause = rcModelTabs[i].rcs[j]; + let context = []; + // let context = root_cause.context + // if (!Array.isArray(context)) { + // context = [context] + // } + root_causes.push({ + id: i, + rc: root_cause.rc, + question: root_cause.question, + context: context, + strategy: root_cause.strategy, + disabled: false, + checked: false, + }); + } } - let sigName = data.sigName; + let signal = data.signal; + let insight = data.insight; + let notes = data.notes; let projName = data.projName; - - const project_object = - await getComputedOrganizationalObjectsForProject(projName); - - for (let context of gen_context) { - // context.data = getContextValue(context.title, project_object); - context.data = 'placeholder because OS is down'; - } - - // creates a library that holds the values of all context options - const context_lib: Record = {}; - options.forEach((option) => { - // context_lib[option] = getContextValue(option, project_object); - context_lib[option] = 'placeholder because OS is down'; - }); - let hypothesisList = data.hypothesisList; - - let canvasState: { type: string; xPos: number; yPos: number }[] = []; - // if canvas isn't initialized properly in DB or canvas is [], use context to initialize it - if (!Array.isArray(data.p5Canvas) || data.p5Canvas.length == 0) { - gen_context.forEach((context) => { - canvasState.push({ type: context.title, xPos: 50, yPos: 50 }); - }); - } else { - canvasState = data.p5Canvas; - } - - // let canvasState = data.p5Canvas; - console.log('canvasState', canvasState); + let title = data.title; return { props: { - sigName: sigName, projName: projName, - description: description, - gen_context: gen_context, - initial_hunch: initial_hunch, - game_plan: game_plan, - detector: data.title, + Notes: notes, + insightNotes: insight, + signalNotes: signal, + title: title, root_causes: root_causes, id: data._id.toString(), - context_lib: context_lib, hypothesisList: hypothesisList, - canvasState: canvasState, - // notes: notesState, - // insight: insightState, }, }; }; From a70e983c5cec6d9a3a4ac18c8893153da2c61ef9 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 8 Apr 2024 15:20:31 -0500 Subject: [PATCH 078/111] multiple tabs for RCModels --- components/diagnosis/HypothesisList.tsx | 2 +- components/diagnosis/ListofRC.tsx | 2 +- components/diagnosis/RCModelTabs.tsx | 35 +++++++++++++++++++++++++ pages/response.tsx | 21 +++++++++------ 4 files changed, 50 insertions(+), 10 deletions(-) create mode 100644 components/diagnosis/RCModelTabs.tsx diff --git a/components/diagnosis/HypothesisList.tsx b/components/diagnosis/HypothesisList.tsx index 4a9f958..6b21d33 100644 --- a/components/diagnosis/HypothesisList.tsx +++ b/components/diagnosis/HypothesisList.tsx @@ -2,7 +2,7 @@ import React, { useState } from 'react'; import Hypothesis from './Hypothesis'; import styles from './HypothesisList.module.css' -const HypothesisList: React.FC = ({items, hypos, setHypos}) => { +const HypothesisList: React.FC = ({hypos, setHypos}) => { const addHypothesis = () => { const newHypothesis = { title: 'Updated hypothesis', content: 'fill in your updated hypothesis' }; setHypos([newHypothesis, ...hypos]); diff --git a/components/diagnosis/ListofRC.tsx b/components/diagnosis/ListofRC.tsx index 7c7c52c..e2cf27a 100644 --- a/components/diagnosis/ListofRC.tsx +++ b/components/diagnosis/ListofRC.tsx @@ -1,7 +1,7 @@ import React, { useState } from 'react'; import styles from './ListofRC.module.css'; -const ListofRC: React.FC = ({ items }) => { +const ListofRC: React.FC = ({ items, setItems }) => { const [expandedItems, setExpandedItems] = useState([]); const toggleItem = (index: number) => { diff --git a/components/diagnosis/RCModelTabs.tsx b/components/diagnosis/RCModelTabs.tsx new file mode 100644 index 0000000..d1c6709 --- /dev/null +++ b/components/diagnosis/RCModelTabs.tsx @@ -0,0 +1,35 @@ +import React, { useState } from 'react'; +import ListofRC from './ListofRC'; + +const RCModelTabs = ({ tabs }) => { + const [activeTab, setActiveTab] = useState(0); + + const handleTabClick = (index) => { + setActiveTab(index); + }; + + return ( +
          +
          + {tabs.map((tab, index) => ( + + ))} +
          +
          + {tabs.map((tab, index) => ( +
          + +
          + ))} +
          +
          + ); +}; + +export default RCModelTabs; diff --git a/pages/response.tsx b/pages/response.tsx index 66063c5..e85e50e 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -10,6 +10,7 @@ import { ObjectId } from 'mongodb'; import styles from './diagnosis.module.css'; import Signal from '../components/diagnosis/Signal'; import ListofRC from '../components/diagnosis/ListofRC'; +import RCModelTabs from '../components/diagnosis/RCModelTabs' import Context from '../components/diagnosis/DiagContext'; import InitialHunch from '../components/diagnosis/InitialHunch'; import GamePlan from '../components/diagnosis/GamePlan'; @@ -27,11 +28,11 @@ const Response: NextPage = ({ insightNotes, signalNotes, title, - root_causes, + rcModelTabs, id, hypothesisList }) => { - const [items, setItems] = useState(root_causes); + const [tabs, setTabs] = useState(rcModelTabs); const [signal, setSignal] = useState(signalNotes); const [notes, setNotes] = useState(Notes); const [insight, setInsight] = useState(insightNotes); @@ -102,10 +103,11 @@ const Response: NextPage = ({
          - +
          - + + {/* */}
        ); @@ -123,17 +125,18 @@ export const getServerSideProps: GetServerSideProps = async (context) => { data = data[0]; let rcModelTabs = data['rcModelTabs'] - let root_causes = []; for (let i = 0; i < rcModelTabs.length; i++){ + let RCModel = rcModelTabs[i].rcs + let root_causes = []; for (let j = 0; j < rcModelTabs[i].rcs.length; j++) { - let root_cause = rcModelTabs[i].rcs[j]; + let root_cause = RCModel[j]; let context = []; // let context = root_cause.context // if (!Array.isArray(context)) { // context = [context] // } root_causes.push({ - id: i, + id: j, rc: root_cause.rc, question: root_cause.question, context: context, @@ -142,7 +145,9 @@ export const getServerSideProps: GetServerSideProps = async (context) => { checked: false, }); } + rcModelTabs[i].rcs = root_causes } + console.log('RCModels', rcModelTabs) let signal = data.signal; let insight = data.insight; @@ -158,7 +163,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => { insightNotes: insight, signalNotes: signal, title: title, - root_causes: root_causes, + rcModelTabs: rcModelTabs, id: data._id.toString(), hypothesisList: hypothesisList, }, From 2b8b27ee0b9af512441b2fbe38a65ad2b4003dae Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 8 Apr 2024 15:34:29 -0500 Subject: [PATCH 079/111] add RC tab --- components/diagnosis/SuggestedIssues.tsx | 23 +++++++++++++++++++---- pages/response.tsx | 6 +++--- 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index 9f71175..3941690 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -2,10 +2,11 @@ import React, { useState, useEffect } from 'react'; import styles from './SuggestedIssues.module.css'; import { getTopSimilarIssues } from '../../lib/TFIDF.js'; -interface Props { - insight: string; -} -const SuggestedIssues: React.FC = ({insight}) => { +// interface Props { +// insight: string; +// setTabs: +// } +const SuggestedIssues: React.FC = ({insight, setTabs}) => { const [result, setResult] = useState([]); useEffect(() => { @@ -19,6 +20,19 @@ const SuggestedIssues: React.FC = ({insight}) => { fetchSimilarIssues(); }, [insight]); + const handleAddToTabs = (title: string) => { + let newTab = { + tabID: 'haha', + selectedRCModel: title, + rcs: [{ + rc:'yo', + strategy: 'test', + question: 'aha' + }] + }; + setTabs((prevTabs) => [...prevTabs, newTab]); + }; + return (

        Suggested Issues

        @@ -28,6 +42,7 @@ const SuggestedIssues: React.FC = ({insight}) => {

        {issue.title}

        Similarity: {issue.similarity}

        +
        ))}
        diff --git a/pages/response.tsx b/pages/response.tsx index e85e50e..d59b3b4 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -88,7 +88,8 @@ const Response: NextPage = ({ useEffect(() => { updateResponse(); - }, [signal, notes, insight]); + console.log('NEW TABS ', tabs) + }, [signal, notes, insight, tabs]); return (
        @@ -99,7 +100,7 @@ const Response: NextPage = ({
        - +
        @@ -147,7 +148,6 @@ export const getServerSideProps: GetServerSideProps = async (context) => { } rcModelTabs[i].rcs = root_causes } - console.log('RCModels', rcModelTabs) let signal = data.signal; let insight = data.insight; From 30e9cdc07c79272e2cbaab484d1b4b7f58796b3d Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 8 Apr 2024 15:42:49 -0500 Subject: [PATCH 080/111] saving added tabs --- pages/api/test/update_response.js | 5 ++-- pages/response.tsx | 49 +++++++++++++++---------------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/pages/api/test/update_response.js b/pages/api/test/update_response.js index 84eb513..8ebe445 100644 --- a/pages/api/test/update_response.js +++ b/pages/api/test/update_response.js @@ -4,10 +4,10 @@ import { ObjectId } from 'mongodb'; export default async function updateResponse(req, res) { if (req.method === 'PUT') { try { - const { _id, signal, hypothesisList, insight, notes} = + const { _id, signal, hypothesisList, insight, notes, rcModelTabs} = req.body; const hypothesisListObject = JSON.parse(hypothesisList); - // const rcListObject = JSON.parse(rcs); + const RCModelTabsObject = JSON.parse(rcModelTabs); const updatedResponse = await connectMongo({ findAndModify: 'responses', query: { _id: new ObjectId(_id) }, @@ -17,6 +17,7 @@ export default async function updateResponse(req, res) { hypothesisList: hypothesisListObject, insight: insight, notes: notes, + rcModelTabs: RCModelTabsObject }, }, new: true, diff --git a/pages/response.tsx b/pages/response.tsx index d59b3b4..a6297a4 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -55,8 +55,7 @@ const Response: NextPage = ({ hypothesisList: JSON.stringify(hypos), insight: insight, notes: notes, - // hypothesisList: [ { titleHypo: 'str', contentHypo: 'str' } ], - // rcModelTabs: [ { tabID: 'str', selectedRCModel: 'str' } ], + rcModelTabs: JSON.stringify(tabs) }), }); if (response.ok) { @@ -87,8 +86,8 @@ const Response: NextPage = ({ }; useEffect(() => { - updateResponse(); console.log('NEW TABS ', tabs) + updateResponse(); }, [signal, notes, insight, tabs]); return ( @@ -126,28 +125,28 @@ export const getServerSideProps: GetServerSideProps = async (context) => { data = data[0]; let rcModelTabs = data['rcModelTabs'] - for (let i = 0; i < rcModelTabs.length; i++){ - let RCModel = rcModelTabs[i].rcs - let root_causes = []; - for (let j = 0; j < rcModelTabs[i].rcs.length; j++) { - let root_cause = RCModel[j]; - let context = []; - // let context = root_cause.context - // if (!Array.isArray(context)) { - // context = [context] - // } - root_causes.push({ - id: j, - rc: root_cause.rc, - question: root_cause.question, - context: context, - strategy: root_cause.strategy, - disabled: false, - checked: false, - }); - } - rcModelTabs[i].rcs = root_causes - } + // for (let i = 0; i < rcModelTabs.length; i++){ + // let RCModel = rcModelTabs[i].rcs + // let root_causes = []; + // for (let j = 0; j < rcModelTabs[i].rcs.length; j++) { + // let root_cause = RCModel[j]; + // let context = []; + // // let context = root_cause.context + // // if (!Array.isArray(context)) { + // // context = [context] + // // } + // root_causes.push({ + // id: j, + // rc: root_cause.rc, + // question: root_cause.question, + // context: context, + // strategy: root_cause.strategy, + // disabled: false, + // checked: false, + // }); + // } + // rcModelTabs[i].rcs = root_causes + // } let signal = data.signal; let insight = data.insight; From 976874f801a39df6627d0eac2749d1b3484dadd9 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Mon, 8 Apr 2024 15:48:16 -0500 Subject: [PATCH 081/111] delete tabs and save to db --- components/diagnosis/RCModelTabs.tsx | 32 +++++++++++++++++++++------- pages/response.tsx | 2 +- 2 files changed, 25 insertions(+), 9 deletions(-) diff --git a/components/diagnosis/RCModelTabs.tsx b/components/diagnosis/RCModelTabs.tsx index d1c6709..60f931a 100644 --- a/components/diagnosis/RCModelTabs.tsx +++ b/components/diagnosis/RCModelTabs.tsx @@ -1,24 +1,40 @@ import React, { useState } from 'react'; import ListofRC from './ListofRC'; -const RCModelTabs = ({ tabs }) => { +const RCModelTabs = ({ tabs, setTabs}) => { const [activeTab, setActiveTab] = useState(0); const handleTabClick = (index) => { setActiveTab(index); }; + const handleCloseTab = (index) => { + setTabs((prevTabs) => { + const newTabs = [...prevTabs]; + newTabs.splice(index, 1); + setActiveTab(activeTab === index ? Math.max(0, index - 1) : activeTab); + return newTabs; + }); + }; + return (
        {tabs.map((tab, index) => ( - +
        + + +
        ))}
        diff --git a/pages/response.tsx b/pages/response.tsx index a6297a4..3829ed9 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -106,7 +106,7 @@ const Response: NextPage = ({
        - + {/* */}
        From a61f03c983e95a4534b09eccdd5cee1b9a9b11dd Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:21:40 -0500 Subject: [PATCH 082/111] change structure --- components/diagnosis/Insight.tsx | 8 +- .../diagnosis/SuggestedIssues.module.css | 2 +- components/diagnosis/SuggestedIssues.tsx | 3 +- .../diagnosis/SuggestionNotes.module.css | 2 +- components/diagnosis/SuggestionNotes.tsx | 2 +- pages/api/test/update_response.js | 3 +- pages/diagnosis.module.css | 1 + pages/response.tsx | 17 +- yarn.lock | 265 ++++++++++-------- 9 files changed, 158 insertions(+), 145 deletions(-) diff --git a/components/diagnosis/Insight.tsx b/components/diagnosis/Insight.tsx index 8b57a1f..ac08f75 100644 --- a/components/diagnosis/Insight.tsx +++ b/components/diagnosis/Insight.tsx @@ -13,13 +13,15 @@ const Insight: React.FC = ({ insight, setInsight }) => { return (
        -

        Insight

        -

        Please write down some insights you have about the situation

        +

        Observations

        +

        What signals of ineffective work practices did you see? As you ask about them, please write down the insights you gained. + Select observations related to one issue that you wish to focus on. Selected observations will be fed into TFIDF to generate + suggestions.

        ); diff --git a/components/diagnosis/SuggestedIssues.module.css b/components/diagnosis/SuggestedIssues.module.css index 8f6a19d..08b04ed 100644 --- a/components/diagnosis/SuggestedIssues.module.css +++ b/components/diagnosis/SuggestedIssues.module.css @@ -1,5 +1,5 @@ .sideBySideItem1 { - width: 40%; + width: 98%; background-color: white; margin-right: 8px; padding: 8px; diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index 3941690..9ed9da3 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -35,8 +35,7 @@ const SuggestedIssues: React.FC = ({insight, setTabs}) => { return (
        -

        Suggested Issues

        -

        Insight: {insight}

        +

        TF-IDF Suggested Issues

        {result.map((issue, index) => (
        diff --git a/components/diagnosis/SuggestionNotes.module.css b/components/diagnosis/SuggestionNotes.module.css index b66d87a..c6e3da2 100644 --- a/components/diagnosis/SuggestionNotes.module.css +++ b/components/diagnosis/SuggestionNotes.module.css @@ -1,5 +1,5 @@ .sideBySideItem2 { - width: 60%; + width: 98%; background-color: white; padding: 8px; } diff --git a/components/diagnosis/SuggestionNotes.tsx b/components/diagnosis/SuggestionNotes.tsx index 0e94076..cb65e54 100644 --- a/components/diagnosis/SuggestionNotes.tsx +++ b/components/diagnosis/SuggestionNotes.tsx @@ -1,5 +1,5 @@ import React, { useState, useEffect, ChangeEvent } from 'react'; -import styles from './GamePlan.module.css'; +import styles from './SuggestionNotes.module.css'; const Notes: React.FC = ({ notes, setNotes }) => { const handleInputChange = (event: ChangeEvent) => { diff --git a/pages/api/test/update_response.js b/pages/api/test/update_response.js index 8ebe445..3924f42 100644 --- a/pages/api/test/update_response.js +++ b/pages/api/test/update_response.js @@ -4,7 +4,7 @@ import { ObjectId } from 'mongodb'; export default async function updateResponse(req, res) { if (req.method === 'PUT') { try { - const { _id, signal, hypothesisList, insight, notes, rcModelTabs} = + const { _id, hypothesisList, insight, notes, rcModelTabs} = req.body; const hypothesisListObject = JSON.parse(hypothesisList); const RCModelTabsObject = JSON.parse(rcModelTabs); @@ -13,7 +13,6 @@ export default async function updateResponse(req, res) { query: { _id: new ObjectId(_id) }, update: { $set: { - signal: signal, hypothesisList: hypothesisListObject, insight: insight, notes: notes, diff --git a/pages/diagnosis.module.css b/pages/diagnosis.module.css index 4b8cada..b9a3e31 100644 --- a/pages/diagnosis.module.css +++ b/pages/diagnosis.module.css @@ -26,6 +26,7 @@ .container2 { margin: 0 8px 8px 8px; + width: 100%; } .sideBySide { diff --git a/pages/response.tsx b/pages/response.tsx index 3829ed9..229c471 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -26,14 +26,12 @@ const Response: NextPage = ({ projName, Notes, insightNotes, - signalNotes, title, rcModelTabs, id, hypothesisList }) => { const [tabs, setTabs] = useState(rcModelTabs); - const [signal, setSignal] = useState(signalNotes); const [notes, setNotes] = useState(Notes); const [insight, setInsight] = useState(insightNotes); const defaultHypothesis = { @@ -51,7 +49,6 @@ const Response: NextPage = ({ }, body: JSON.stringify({ _id: id, - signal: signal, hypothesisList: JSON.stringify(hypos), insight: insight, notes: notes, @@ -88,22 +85,20 @@ const Response: NextPage = ({ useEffect(() => { console.log('NEW TABS ', tabs) updateResponse(); - }, [signal, notes, insight, tabs]); + }, [notes, insight, tabs]); return (
        -
        -
        - - -
        + +
        +
        +
        -
        @@ -148,7 +143,6 @@ export const getServerSideProps: GetServerSideProps = async (context) => { // rcModelTabs[i].rcs = root_causes // } - let signal = data.signal; let insight = data.insight; let notes = data.notes; let projName = data.projName; @@ -160,7 +154,6 @@ export const getServerSideProps: GetServerSideProps = async (context) => { projName: projName, Notes: notes, insightNotes: insight, - signalNotes: signal, title: title, rcModelTabs: rcModelTabs, id: data._id.toString(), diff --git a/yarn.lock b/yarn.lock index d14e42f..2b814ff 100644 --- a/yarn.lock +++ b/yarn.lock @@ -593,7 +593,7 @@ dependencies: "@chakra-ui/utils" "2.0.15" -"@chakra-ui/react@^2.3.5", "@chakra-ui/react@^2.8.2": +"@chakra-ui/react@^2.8.2": version "2.8.2" resolved "https://registry.npmjs.org/@chakra-ui/react/-/react-2.8.2.tgz" integrity sha512-Hn0moyxxyCDKuR9ywYpqgX8dvjqwu9ArwpIb9wHNYjnODETjLwazgNIliCVBRcJvysGRiV51U2/JtJVrpeCjUQ== @@ -720,7 +720,7 @@ "@chakra-ui/react-context" "2.1.0" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/styled-system@>=2.0.0", "@chakra-ui/styled-system@>=2.8.0", "@chakra-ui/styled-system@2.9.2": +"@chakra-ui/styled-system@2.9.2": version "2.9.2" resolved "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.9.2.tgz" integrity sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg== @@ -737,7 +737,7 @@ "@chakra-ui/checkbox" "2.3.2" "@chakra-ui/shared-utils" "2.0.5" -"@chakra-ui/system@>=2.0.0", "@chakra-ui/system@2.6.2": +"@chakra-ui/system@2.6.2": version "2.6.2" resolved "https://registry.npmjs.org/@chakra-ui/system/-/system-2.6.2.tgz" integrity sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ== @@ -946,17 +946,17 @@ dependencies: "@emotion/memoize" "^0.8.1" -"@emotion/memoize@^0.8.1": - version "0.8.1" - resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz" - integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== - "@emotion/memoize@0.7.4": version "0.7.4" resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== -"@emotion/react@^11.0.0", "@emotion/react@^11.0.0-rc.0", "@emotion/react@^11.10.4", "@emotion/react@^11.11.3", "@emotion/react@>=10.0.35", "@emotion/react@>=11.9.0": +"@emotion/memoize@^0.8.1": + version "0.8.1" + resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz" + integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== + +"@emotion/react@^11.11.3": version "11.11.3" resolved "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz" integrity sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA== @@ -981,7 +981,7 @@ "@emotion/utils" "^1.2.1" csstype "^3.0.2" -"@emotion/server@^11.11.0", "@emotion/server@>=11.4.0": +"@emotion/server@^11.11.0": version "11.11.0" resolved "https://registry.npmjs.org/@emotion/server/-/server-11.11.0.tgz" integrity sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA== @@ -996,7 +996,7 @@ resolved "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz" integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA== -"@emotion/styled@^11.0.0", "@emotion/styled@^11.10.4", "@emotion/styled@^11.11.0": +"@emotion/styled@^11.11.0": version "11.11.0" resolved "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz" integrity sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng== @@ -1166,7 +1166,7 @@ dependencies: "@mantine/utils" "6.0.21" -"@mantine/core@^6.0.21", "@mantine/core@6.0.21": +"@mantine/core@^6.0.21": version "6.0.21" resolved "https://registry.npmjs.org/@mantine/core/-/core-6.0.21.tgz" integrity sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg== @@ -1178,7 +1178,7 @@ react-remove-scroll "^2.5.5" react-textarea-autosize "8.3.4" -"@mantine/hooks@^6.0.21", "@mantine/hooks@6.0.21": +"@mantine/hooks@^6.0.21": version "6.0.21" resolved "https://registry.npmjs.org/@mantine/hooks/-/hooks-6.0.21.tgz" integrity sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew== @@ -1231,8 +1231,50 @@ dependencies: glob "10.3.10" +"@next/swc-darwin-arm64@14.1.4": + version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.4.tgz#a3bca0dc4393ac4cf3169bbf24df63441de66bb7" + integrity sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg== + "@next/swc-darwin-x64@14.1.4": version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.4.tgz#ba3683d4e2d30099f3f2864dd7349a4d9f440140" + integrity sha512-b0Xo1ELj3u7IkZWAKcJPJEhBop117U78l70nfoQGo4xUSvv0PJSTaV4U9xQBLvZlnjsYkc8RwQN1HoH/oQmLlQ== + +"@next/swc-linux-arm64-gnu@14.1.4": + version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.4.tgz#3519969293f16379954b7e196deb0c1eecbb2f8b" + integrity sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA== + +"@next/swc-linux-arm64-musl@14.1.4": + version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.4.tgz#4bb3196bd402b3f84cf5373ff1021f547264d62f" + integrity sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g== + +"@next/swc-linux-x64-gnu@14.1.4": + version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.4.tgz#1b3372c98c83dcdab946cdb4ee06e068b8139ba3" + integrity sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw== + +"@next/swc-linux-x64-musl@14.1.4": + version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.4.tgz#8459088bdc872648ff78f121db596f2533df5808" + integrity sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg== + +"@next/swc-win32-arm64-msvc@14.1.4": + version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.4.tgz#84280a08c00cc3be24ddd3a12f4617b108e6dea6" + integrity sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag== + +"@next/swc-win32-ia32-msvc@14.1.4": + version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.4.tgz#23ff7f4bd0a27177428669ef6fa5c3923c738031" + integrity sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw== + +"@next/swc-win32-x64-msvc@14.1.4": + version "14.1.4" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.4.tgz#bccf5beccfde66d6c66fa4e2509118c796385eda" + integrity sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w== "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -1242,7 +1284,7 @@ "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== @@ -1260,7 +1302,7 @@ resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@popperjs/core@^2.0.0", "@popperjs/core@^2.6.0", "@popperjs/core@^2.9.3": +"@popperjs/core@^2.6.0", "@popperjs/core@^2.9.3": version "2.11.8" resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz" integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== @@ -1360,7 +1402,7 @@ resolved "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz" integrity sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg== -"@redis/client@^1.0.0", "@redis/client@1.5.14": +"@redis/client@1.5.14": version "1.5.14" resolved "https://registry.npmjs.org/@redis/client/-/client-1.5.14.tgz" integrity sha512-YGn0GqsRBFUQxklhY7v562VMOP0DcmlrHHs3IV1mFE3cbxe31IITUkqhBcIhVSI/2JqtWAJXg5mjV4aU+zD0HA== @@ -1486,7 +1528,7 @@ "@types/scheduler" "*" csstype "^3.0.2" -"@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react@18.2.55": +"@types/react@18.2.55": version "18.2.55" resolved "https://registry.npmjs.org/@types/react/-/react-18.2.55.tgz" integrity sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA== @@ -1595,7 +1637,7 @@ acorn-jsx@^5.3.2: resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8.9.0: +acorn@^8.9.0: version "8.11.3" resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz" integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== @@ -1863,7 +1905,7 @@ binary-search@^1.3.5: resolved "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz" integrity sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA== -blockly@^10.3.1, "blockly@>= 10.0.0": +"blockly@>= 10.0.0", blockly@^10.3.1: version "10.4.2" resolved "https://registry.npmjs.org/blockly/-/blockly-10.4.2.tgz" integrity sha512-oCJkHZD1HEPYPwnMk/sbmMmhW6UFe+3iH5yvDn3hy3HSVzCOunkw9H1Crb/MmlhhFdvjB5uWgGzQNAa2eWAV6A== @@ -1892,7 +1934,7 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" -browserslist@^4.22.2, "browserslist@>= 4.21.0": +browserslist@^4.22.2: version "4.23.0" resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz" integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== @@ -2011,16 +2053,16 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - color-name@1.1.3: version "1.1.3" resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + color2k@^2.0.2: version "2.0.3" resolved "https://registry.npmjs.org/color2k/-/color2k-2.0.3.tgz" @@ -2085,7 +2127,7 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2: shebang-command "^2.0.0" which "^2.0.1" -css-box-model@^1.2.0, css-box-model@1.2.1: +css-box-model@1.2.1, css-box-model@^1.2.0: version "1.2.1" resolved "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz" integrity sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw== @@ -2104,16 +2146,16 @@ cssstyle@^3.0.0: dependencies: rrweb-cssom "^0.6.0" -csstype@^3.0.2, csstype@^3.1.2: - version "3.1.3" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" - integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== - csstype@3.0.9: version "3.0.9" resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz" integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== +csstype@^3.0.2, csstype@^3.1.2: + version "3.1.3" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + damerau-levenshtein@^1.0.8: version "1.0.8" resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" @@ -2128,6 +2170,13 @@ data-urls@^4.0.0: whatwg-mimetype "^3.0.0" whatwg-url "^12.0.0" +debug@4, debug@4.x, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + debug@^3.2.7: version "3.2.7" resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" @@ -2135,13 +2184,6 @@ debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@4, debug@4.x: - version "4.3.4" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - decimal.js@^10.4.3: version "10.4.3" resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz" @@ -2245,7 +2287,7 @@ domexception@^4.0.0: dependencies: webidl-conversions "^7.0.0" -domhandler@^4.2.0, domhandler@^4.2.2, domhandler@4.3.1: +domhandler@4.3.1, domhandler@^4.2.0, domhandler@^4.2.2: version "4.3.1" resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== @@ -2283,7 +2325,7 @@ electron-to-chromium@^1.4.668: resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.681.tgz" integrity sha512-1PpuqJUFWoXZ1E54m8bsLPVYwIVCRzvaL+n5cjigGga4z854abDnFRc+cTa2th4S79kyGqya/1xoR7h+Y5G5lg== -embla-carousel-react@^7.0.0, embla-carousel-react@^7.1.0: +embla-carousel-react@^7.1.0: version "7.1.0" resolved "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-7.1.0.tgz" integrity sha512-tbYRPRZSDNd2QLNqYDcArAakGIxtUbhS7tkP0dGXktXHGgcX+3ji3VrOUTOftBiujZrMV8kRxtrRUe/1soloIQ== @@ -2509,7 +2551,7 @@ eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: dependencies: debug "^3.2.7" -eslint-plugin-import@*, eslint-plugin-import@^2.28.1: +eslint-plugin-import@^2.28.1: version "2.29.1" resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz" integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== @@ -2594,7 +2636,7 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4 resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@*, "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", "eslint@^7.0.0 || ^8.0.0", "eslint@^7.23.0 || ^8.0.0", eslint@^8.56.0, eslint@>=7.0.0: +eslint@^8.56.0: version "8.57.0" resolved "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz" integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== @@ -2786,7 +2828,7 @@ fraction.js@^4.3.7: resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz" integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== -framer-motion@^11.0.5, framer-motion@>=4.0.0, framer-motion@>6.0.0: +framer-motion@^11.0.5: version "11.0.6" resolved "https://registry.npmjs.org/framer-motion/-/framer-motion-11.0.6.tgz" integrity sha512-BpO3mWF8UwxzO3Ca5AmSkrg14QYTeJa9vKgoLOoBdBdTPj0e81i1dMwnX6EQJXRieUx20uiDBXq8bA6y7N6b8Q== @@ -2883,7 +2925,7 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@^10.3.10, glob@10.3.10: +glob@10.3.10, glob@^10.3.10: version "10.3.10" resolved "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz" integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== @@ -3098,7 +3140,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@~2.0.1, inherits@~2.0.3, inherits@2: +inherits@2, inherits@~2.0.1, inherits@~2.0.3: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -3314,6 +3356,11 @@ is-weakset@^2.0.1: call-bind "^1.0.2" get-intrinsic "^1.1.1" +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== + isarray@^2.0.5: version "2.0.5" resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" @@ -3324,11 +3371,6 @@ isarray@~1.0.0: resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" - integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== - isexe@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" @@ -3570,26 +3612,19 @@ mime-types@^2.1.12: dependencies: mime-db "1.52.0" -minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^9.0.1: +minimatch@9.0.3, minimatch@^9.0.1: version "9.0.3" resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== dependencies: brace-expansion "^2.0.1" -minimatch@9.0.3: - version "9.0.3" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" - integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== +minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: - brace-expansion "^2.0.1" + brace-expansion "^1.1.7" minimist@^1.2.0, minimist@^1.2.6, minimist@~1.2.5: version "1.2.8" @@ -3686,16 +3721,16 @@ mquery@5.0.0: dependencies: debug "4.x" -ms@^2.1.1, ms@2.1.3: - version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - ms@2.1.2: version "2.1.2" resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@2.1.3, ms@^2.1.1: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + multipipe@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz" @@ -3743,7 +3778,7 @@ natural@^6.12.0: uuid "^9.0.1" wordnet-db "^3.1.11" -next@*, next@latest: +next@latest: version "14.1.4" resolved "https://registry.npmjs.org/next/-/next-14.1.4.tgz" integrity sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ== @@ -4020,7 +4055,7 @@ pg-types@^2.1.0: postgres-date "~1.0.4" postgres-interval "^1.1.0" -pg@^8.11.3, pg@>=8.0: +pg@^8.11.3: version "8.11.5" resolved "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz" integrity sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw== @@ -4109,15 +4144,6 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.0.0, postcss@^8.1.0, postcss@^8.2.14, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.35, postcss@>=8.0.9: - version "8.4.35" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz" - integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== - dependencies: - nanoid "^3.3.7" - picocolors "^1.0.0" - source-map-js "^1.0.2" - postcss@8.4.31: version "8.4.31" resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz" @@ -4127,6 +4153,15 @@ postcss@8.4.31: picocolors "^1.0.0" source-map-js "^1.0.2" +postcss@^8.4.23, postcss@^8.4.35: + version "8.4.35" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz" + integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.0" + source-map-js "^1.0.2" + postgres-array@~2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz" @@ -4226,7 +4261,7 @@ react-clientside-effect@^1.2.6: dependencies: "@babel/runtime" "^7.12.13" -"react-dom@^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", "react-dom@^16.3.0 || ^17.0.0", "react-dom@^16.8 || ^17.0 || ^18.0", "react-dom@^16.8.0 || ^17 || ^18", "react-dom@^16.8.5 || ^17.0.0 || ^18.0.0", react-dom@^18.0.0, react-dom@^18.2.0, react-dom@>=16.6.0, react-dom@>=16.8.0, react-dom@>=18, react-dom@18.2.0: +react-dom@18.2.0: version "18.2.0" resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== @@ -4234,7 +4269,7 @@ react-clientside-effect@^1.2.6: loose-envify "^1.1.0" scheduler "^0.23.0" -react-fast-compare@^3.0.1, react-fast-compare@3.2.2: +react-fast-compare@3.2.2, react-fast-compare@^3.0.1: version "3.2.2" resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz" integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== @@ -4357,7 +4392,7 @@ react-transition-group@^4.4.2: loose-envify "^1.4.0" prop-types "^15.6.2" -"react@^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", "react@^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react@^16.3.0 || ^17.0.0", "react@^16.8 || ^17.0 || ^18.0", "react@^16.8.0 || ^17 || ^18", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.1 || ^18.0.0", "react@^16.8.3 || ^17 || ^18", "react@^16.8.5 || ^17.0.0 || ^18.0.0", react@^18.0.0, react@^18.2.0, "react@>= 16.8.0 || 17.x.x || ^18.0.0-0", react@>=16.6.0, react@>=16.8.0, react@>=18, "react@0.14 || 15 || 16 || 17 || 18", react@18.2.0: +react@18.2.0: version "18.2.0" resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz" integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== @@ -4668,28 +4703,7 @@ streamsearch@^1.1.0: resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz" integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" - integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.1.0: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -4749,14 +4763,19 @@ string.prototype.trimstart@^1.0.7: define-properties "^1.2.0" es-abstract "^1.22.1" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": - version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: - ansi-regex "^5.0.1" + safe-buffer "~5.1.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -4838,7 +4857,7 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -sylvester@^0.0.12, "sylvester@>= 0.0.8": +"sylvester@>= 0.0.8", sylvester@^0.0.12: version "0.0.12" resolved "https://registry.npmjs.org/sylvester/-/sylvester-0.0.12.tgz" integrity sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw== @@ -4905,11 +4924,6 @@ thenify-all@^1.0.0: dependencies: any-promise "^1.0.0" -through@^2.3.8: - version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - through2@~0.4.1: version "0.4.2" resolved "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz" @@ -4918,6 +4932,11 @@ through2@~0.4.1: readable-stream "~1.0.17" xtend "~2.1.1" +through@^2.3.8: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + tiny-invariant@^1.0.6: version "1.3.3" resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz" @@ -4977,16 +4996,16 @@ tsconfig-paths@^3.15.0: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: - version "2.6.2" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" - integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== - tslib@2.4.0: version "2.4.0" resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== +tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: + version "2.6.2" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" @@ -5043,7 +5062,7 @@ typed-array-length@^1.0.4: is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" -typescript@^5.4.4, typescript@>=3.3.1, typescript@>=4.2.0: +typescript@^5.4.4: version "5.4.4" resolved "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz" integrity sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw== @@ -5307,7 +5326,7 @@ xtend@~2.1.1: dependencies: object-keys "~0.4.0" -yallist@^4.0.0, yallist@4.0.0: +yallist@4.0.0, yallist@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== From 53f63f10ace6dcdf3ad86fc6ba921de4e93ebe8f Mon Sep 17 00:00:00 2001 From: Linh Ly Date: Tue, 9 Apr 2024 13:39:22 -0500 Subject: [PATCH 083/111] fix saving hypo to DB --- pages/response.tsx | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/pages/response.tsx b/pages/response.tsx index 229c471..38970ac 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -10,7 +10,7 @@ import { ObjectId } from 'mongodb'; import styles from './diagnosis.module.css'; import Signal from '../components/diagnosis/Signal'; import ListofRC from '../components/diagnosis/ListofRC'; -import RCModelTabs from '../components/diagnosis/RCModelTabs' +import RCModelTabs from '../components/diagnosis/RCModelTabs'; import Context from '../components/diagnosis/DiagContext'; import InitialHunch from '../components/diagnosis/InitialHunch'; import GamePlan from '../components/diagnosis/GamePlan'; @@ -29,7 +29,7 @@ const Response: NextPage = ({ title, rcModelTabs, id, - hypothesisList + hypothesisList, }) => { const [tabs, setTabs] = useState(rcModelTabs); const [notes, setNotes] = useState(Notes); @@ -38,6 +38,7 @@ const Response: NextPage = ({ title: 'First Hunch', content: 'fill in your first hunch here!', }; + // if hypothesisList is filled in DB, return it. If not, use defaultHypothesis const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); const updateResponse = async () => { @@ -52,7 +53,7 @@ const Response: NextPage = ({ hypothesisList: JSON.stringify(hypos), insight: insight, notes: notes, - rcModelTabs: JSON.stringify(tabs) + rcModelTabs: JSON.stringify(tabs), }), }); if (response.ok) { @@ -82,10 +83,11 @@ const Response: NextPage = ({ } }; + // Watch out for changes in state variables in [], and execute the function inside useEffect(() => { - console.log('NEW TABS ', tabs) + console.log('NEW TABS ', tabs); updateResponse(); - }, [notes, insight, tabs]); + }, [notes, insight, tabs, hypos]); return (
        @@ -94,15 +96,17 @@ const Response: NextPage = ({
        - +
        - +
        - + {/* */} + {/* in charge */} +
        ); @@ -119,7 +123,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => { }); data = data[0]; - let rcModelTabs = data['rcModelTabs'] + let rcModelTabs = data['rcModelTabs']; // for (let i = 0; i < rcModelTabs.length; i++){ // let RCModel = rcModelTabs[i].rcs // let root_causes = []; @@ -149,6 +153,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => { let hypothesisList = data.hypothesisList; let title = data.title; + // Pass content from DB in props return { props: { projName: projName, From ee9e59256873258b730d376c7b4df26353015c80 Mon Sep 17 00:00:00 2001 From: Linh Ly Date: Tue, 9 Apr 2024 13:51:32 -0500 Subject: [PATCH 084/111] give each tab a hypolist --- components/diagnosis/RCModelTabs.tsx | 11 ++++++++--- pages/response.tsx | 9 ++++++--- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/components/diagnosis/RCModelTabs.tsx b/components/diagnosis/RCModelTabs.tsx index 60f931a..72b60cb 100644 --- a/components/diagnosis/RCModelTabs.tsx +++ b/components/diagnosis/RCModelTabs.tsx @@ -1,7 +1,8 @@ import React, { useState } from 'react'; import ListofRC from './ListofRC'; +import HypothesisList from './HypothesisList'; -const RCModelTabs = ({ tabs, setTabs}) => { +const RCModelTabs = ({ hypos, setHypos, tabs, setTabs }) => { const [activeTab, setActiveTab] = useState(0); const handleTabClick = (index) => { @@ -21,7 +22,7 @@ const RCModelTabs = ({ tabs, setTabs}) => {
        {tabs.map((tab, index) => ( -
        +
        {tabs.map((tab, index) => ( -
        +
        ))} +
        ); diff --git a/pages/response.tsx b/pages/response.tsx index 38970ac..aa10230 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -103,10 +103,13 @@ const Response: NextPage = ({
        - + {/* */} - {/* in charge */} -
        ); From e4e0fce98c09273df165c530b246ba0d4d3cc745 Mon Sep 17 00:00:00 2001 From: Linh Ly Date: Tue, 9 Apr 2024 14:56:05 -0500 Subject: [PATCH 085/111] made separate hypo for each tab, but not saving to db --- components/diagnosis/HypothesisList.tsx | 31 ++++++++++++++++--------- components/diagnosis/RCModelTabs.tsx | 4 ++-- pages/response.tsx | 26 ++++++++++----------- 3 files changed, 35 insertions(+), 26 deletions(-) diff --git a/components/diagnosis/HypothesisList.tsx b/components/diagnosis/HypothesisList.tsx index 6b21d33..efb1a00 100644 --- a/components/diagnosis/HypothesisList.tsx +++ b/components/diagnosis/HypothesisList.tsx @@ -1,23 +1,32 @@ import React, { useState } from 'react'; import Hypothesis from './Hypothesis'; -import styles from './HypothesisList.module.css' +import styles from './HypothesisList.module.css'; + +const HypothesisList: React.FC = ({ hypos }) => { + const [hypotheses, setHypos] = useState(hypos); // State to manage hypotheses -const HypothesisList: React.FC = ({hypos, setHypos}) => { const addHypothesis = () => { - const newHypothesis = { title: 'Updated hypothesis', content: 'fill in your updated hypothesis' }; - setHypos([newHypothesis, ...hypos]); + const newHypothesis = { + title: 'Updated hypothesis', + content: 'fill in your updated hypothesis', + }; + setHypos((prevHypos) => [{ ...newHypothesis }, ...prevHypos]); // Add new hypothesis to the beginning }; const updateHypothesis = (index: number, content: string) => { - const newHypotheses = [...hypos]; - newHypotheses[index].content = content; - setHypos(newHypotheses); + setHypos((prevHypos) => { + const updatedHypos = [...prevHypos]; + updatedHypos[index].content = content; + return updatedHypos; + }); }; const deleteHypothesis = (index: number) => { - const newHypos = [...hypos]; - newHypos.splice(index, 1); // Remove the hypothesis at the specified index - setHypos(newHypos); + setHypos((prevHypos) => { + const updatedHypos = [...prevHypos]; + updatedHypos.splice(index, 1); + return updatedHypos; + }); }; return ( @@ -32,7 +41,7 @@ const HypothesisList: React.FC = ({hypos, setHypos}) => {
        - {hypos.map((hypoData, index) => ( + {hypotheses.map((hypoData, index) => (
        { +const RCModelTabs = ({ tabs, setTabs }) => { const [activeTab, setActiveTab] = useState(0); const handleTabClick = (index) => { @@ -45,9 +45,9 @@ const RCModelTabs = ({ hypos, setHypos, tabs, setTabs }) => { style={{ display: index === activeTab ? 'block' : 'none' }} > +
        ))} -
        ); diff --git a/pages/response.tsx b/pages/response.tsx index aa10230..99cd66a 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -18,28 +18,28 @@ import Insight from '../components/diagnosis/Insight'; import SuggestionNotes from '../components/diagnosis/SuggestionNotes'; import SuggestedIssues from '../components/diagnosis/SuggestedIssues'; import Guidelines from '../components/diagnosis/Guidelines'; -import HypothesisList from '../components/diagnosis/HypothesisList'; import getComputedOrganizationalObjectsForProject from '../pages/api/test/get_OS_project_object.js'; import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; const Response: NextPage = ({ + // All vars from props projName, Notes, insightNotes, title, rcModelTabs, id, - hypothesisList, + // hypothesisList, }) => { const [tabs, setTabs] = useState(rcModelTabs); const [notes, setNotes] = useState(Notes); const [insight, setInsight] = useState(insightNotes); - const defaultHypothesis = { - title: 'First Hunch', - content: 'fill in your first hunch here!', - }; + // const defaultHypothesis = { + // title: 'First Hunch', + // content: 'fill in your first hunch here!', + // }; // if hypothesisList is filled in DB, return it. If not, use defaultHypothesis - const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); + // const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); const updateResponse = async () => { try { @@ -50,7 +50,7 @@ const Response: NextPage = ({ }, body: JSON.stringify({ _id: id, - hypothesisList: JSON.stringify(hypos), + // hypothesisList: JSON.stringify(hypos), insight: insight, notes: notes, rcModelTabs: JSON.stringify(tabs), @@ -87,7 +87,7 @@ const Response: NextPage = ({ useEffect(() => { console.log('NEW TABS ', tabs); updateResponse(); - }, [notes, insight, tabs, hypos]); + }, [notes, insight, tabs]); return (
        @@ -104,8 +104,8 @@ const Response: NextPage = ({
        @@ -156,7 +156,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => { let hypothesisList = data.hypothesisList; let title = data.title; - // Pass content from DB in props + // Pass content from DB to props return { props: { projName: projName, @@ -165,7 +165,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => { title: title, rcModelTabs: rcModelTabs, id: data._id.toString(), - hypothesisList: hypothesisList, + // hypothesisList: hypothesisList, }, }; }; From 59857af8d048a582423ca87c5255e19c75abe528 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 9 Apr 2024 15:26:24 -0500 Subject: [PATCH 086/111] fixed hypo multithread saving issue --- components/diagnosis/HypothesisList.tsx | 6 ++--- components/diagnosis/RCModelTab.tsx | 36 +++++++++++++++++++++++++ components/diagnosis/RCModelTabs.tsx | 11 ++------ pages/api/test/update_response.js | 4 +-- pages/response.tsx | 7 ----- 5 files changed, 41 insertions(+), 23 deletions(-) create mode 100644 components/diagnosis/RCModelTab.tsx diff --git a/components/diagnosis/HypothesisList.tsx b/components/diagnosis/HypothesisList.tsx index efb1a00..9412e4a 100644 --- a/components/diagnosis/HypothesisList.tsx +++ b/components/diagnosis/HypothesisList.tsx @@ -2,9 +2,7 @@ import React, { useState } from 'react'; import Hypothesis from './Hypothesis'; import styles from './HypothesisList.module.css'; -const HypothesisList: React.FC = ({ hypos }) => { - const [hypotheses, setHypos] = useState(hypos); // State to manage hypotheses - +const HypothesisList: React.FC = ({ hypos, setHypos}) => { const addHypothesis = () => { const newHypothesis = { title: 'Updated hypothesis', @@ -41,7 +39,7 @@ const HypothesisList: React.FC = ({ hypos }) => {
        - {hypotheses.map((hypoData, index) => ( + {hypos.map((hypoData, index) => (
        { + const defaultHypothesis = { + title: 'First Hunch', + content: 'fill in your first hunch here!', + }; + // if hypothesisList is filled in DB, return it. If not, use defaultHypothesis + const [hypos, setHypos] = useState(tab.hypothesisList || [defaultHypothesis]); + + const updateTabs = (index) => { + setTabs((prevTabs) => { + const newTabs = [...prevTabs]; + newTabs[index].hypothesisList = hypos; + return newTabs; + }); + }; + + useEffect(() => { + updateTabs(index) + }, [hypos]); + + return ( +
        + + +
        ) + +} + +export default RCModelTab; diff --git a/components/diagnosis/RCModelTabs.tsx b/components/diagnosis/RCModelTabs.tsx index cb0c710..e6931a5 100644 --- a/components/diagnosis/RCModelTabs.tsx +++ b/components/diagnosis/RCModelTabs.tsx @@ -1,6 +1,5 @@ import React, { useState } from 'react'; -import ListofRC from './ListofRC'; -import HypothesisList from './HypothesisList'; +import RCModelTab from './RCModelTab'; const RCModelTabs = ({ tabs, setTabs }) => { const [activeTab, setActiveTab] = useState(0); @@ -40,13 +39,7 @@ const RCModelTabs = ({ tabs, setTabs }) => {
        {tabs.map((tab, index) => ( -
        - - -
        + ))}
        diff --git a/pages/api/test/update_response.js b/pages/api/test/update_response.js index 3924f42..77520ec 100644 --- a/pages/api/test/update_response.js +++ b/pages/api/test/update_response.js @@ -4,16 +4,14 @@ import { ObjectId } from 'mongodb'; export default async function updateResponse(req, res) { if (req.method === 'PUT') { try { - const { _id, hypothesisList, insight, notes, rcModelTabs} = + const { _id, insight, notes, rcModelTabs} = req.body; - const hypothesisListObject = JSON.parse(hypothesisList); const RCModelTabsObject = JSON.parse(rcModelTabs); const updatedResponse = await connectMongo({ findAndModify: 'responses', query: { _id: new ObjectId(_id) }, update: { $set: { - hypothesisList: hypothesisListObject, insight: insight, notes: notes, rcModelTabs: RCModelTabsObject diff --git a/pages/response.tsx b/pages/response.tsx index 99cd66a..9a8ccdd 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -29,7 +29,6 @@ const Response: NextPage = ({ title, rcModelTabs, id, - // hypothesisList, }) => { const [tabs, setTabs] = useState(rcModelTabs); const [notes, setNotes] = useState(Notes); @@ -50,7 +49,6 @@ const Response: NextPage = ({ }, body: JSON.stringify({ _id: id, - // hypothesisList: JSON.stringify(hypos), insight: insight, notes: notes, rcModelTabs: JSON.stringify(tabs), @@ -104,12 +102,9 @@ const Response: NextPage = ({
        - {/* */}
        ); @@ -153,7 +148,6 @@ export const getServerSideProps: GetServerSideProps = async (context) => { let insight = data.insight; let notes = data.notes; let projName = data.projName; - let hypothesisList = data.hypothesisList; let title = data.title; // Pass content from DB to props @@ -165,7 +159,6 @@ export const getServerSideProps: GetServerSideProps = async (context) => { title: title, rcModelTabs: rcModelTabs, id: data._id.toString(), - // hypothesisList: hypothesisList, }, }; }; From 1014e1b382fcdda7458b92bc28a7f920446a88b5 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 9 Apr 2024 16:13:12 -0500 Subject: [PATCH 087/111] fix layout --- components/diagnosis/Insight.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/diagnosis/Insight.module.css b/components/diagnosis/Insight.module.css index 9eb5f25..507cd7b 100644 --- a/components/diagnosis/Insight.module.css +++ b/components/diagnosis/Insight.module.css @@ -1,5 +1,5 @@ .sideBySideItem2 { - width: 100%; + width: 98%; background-color: white; padding: 8px; } From daf158ed023083e02cf6b2b3bd03de3c285d86f4 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 9 Apr 2024 20:56:06 -0500 Subject: [PATCH 088/111] fetch from RClibary; --- lib/TFIDF.js | 48 ++++++++++++++++++++++----------- lib/TFIDF.py | 51 ----------------------------------- package.json | 1 + pages/api/test/get_scripts.js | 7 ----- utils/connectMongo.js | 11 +++----- yarn.lock | 6 +++++ 6 files changed, 43 insertions(+), 81 deletions(-) delete mode 100644 lib/TFIDF.py delete mode 100644 pages/api/test/get_scripts.js diff --git a/lib/TFIDF.js b/lib/TFIDF.js index 0ed40d4..20f5970 100644 --- a/lib/TFIDF.js +++ b/lib/TFIDF.js @@ -1,6 +1,20 @@ const natural = require('natural'); const _ = require('lodash'); const { ENGLISH_STOP_WORDS } = require('./stopWords.js'); +const connectMongo = require("../utils/connectMongo.js") + +async function getIssuesFromDatabase() { + try { + const issues = await connectMongo({ find: "RCLibrary" }); + return issues.map(issue => ({ + title: issue.issue_title, + description: issue.description + })); + } catch (error) { + console.error("Error fetching issues from database:", error); + return []; + } +} function preprocess(text) { return text.toLowerCase(); @@ -13,15 +27,9 @@ function cosineSimilarity(vectorA, vectorB) { return dotProduct / (magnitudeA * magnitudeB); } -function getTopSimilarIssues(mentorNote, topN = 3) { - const issues = [ - { title: "students not understanding some core part of the conceptual approach and it's really affecting what they are doing practically", - description: "students have gaps of understanding in their conceptual approach so that it's difficult to advance their practical design. Some common signals include can't articulate some part of their conceptual approach and vagueness in conceptual understanding." }, - { title: "students being too hard on themselves", - description: "students put a lot of pressure on themselves to work more and deliver, sometimes feeling bad from failing to meet a pre-establish goal or letting others down. They often have a high standard for themselves. Some common signals are being a perfectionist, being stressed or anxious, and having fear of failure." }, - { title: "student not planning with clear deliverables", - description: "when students plan their sprint, they don't have a clear deliverable in mind such as a prototype, user journey, or a section of the canvases that would clearly show how they addressed their riskiest risk. Some common signals are story with empty purpose/deliverable in sprint log, their idea of what form of deliverable would showcase their new understanding is undeveloped or vague." } - ]; +async function getTopSimilarIssues(mentorNote, topN = 3) { + const issues = await getIssuesFromDatabase(); + console.log(issues) mentorNote = preprocess(mentorNote); @@ -45,9 +53,9 @@ function getTopSimilarIssues(mentorNote, topN = 3) { return _.sortBy(vector, 'term'); }); - // Print TF-IDF vector for mentor notes - console.log("TF-IDF Matrix note:"); - console.table(tfidfMatrix[0]); + // // Print TF-IDF vector for mentor notes + // console.log("TF-IDF Matrix note:"); + // console.table(tfidfMatrix[0]); // Compute cosine similarity between mentor's note and issue descriptions const mentorVector = tfidfMatrix[0].map(term => term.tfidf); @@ -75,8 +83,16 @@ function getTopSimilarIssues(mentorNote, topN = 3) { module.exports = { getTopSimilarIssues }; -// const mentorNote = "Ella being too hard on herself and not focusing on risks (when everything looks like one) - Ended up over focusing on what happened in an ineffective user test - Freaked out about a poor user test and that drove a lot of her attention"; -// // const mentorNote = "Purpose missing because they are still not explicit about what milestones they want to hit --- the deliverables are unclear too so it's all related? Not having a clear sense of what the deliverable should actually be or look like" +// async function testTFIDF() { +// const mentorNote = "Ella being too hard on herself and not focusing on risks (when everything looks like one) - Ended up over focusing on what happened in an ineffective user test - Freaked out about a poor user test and that drove a lot of her attention"; +// // const mentorNote = "Purpose missing because they are still not explicit about what milestones they want to hit --- the deliverables are unclear too so it's all related? Not having a clear sense of what the deliverable should actually be or look like" + +// try { +// const topSimilarIssues = await getTopSimilarIssues(mentorNote); +// console.log("Top similar issues:", topSimilarIssues); +// } catch (error) { +// console.error("Error:", error); +// } +// } -// const topSimilarIssues = getTopSimilarIssues(mentorNote); -// console.log("Top similar issues:", topSimilarIssues); \ No newline at end of file +// testTFIDF(); \ No newline at end of file diff --git a/lib/TFIDF.py b/lib/TFIDF.py deleted file mode 100644 index 70de5fc..0000000 --- a/lib/TFIDF.py +++ /dev/null @@ -1,51 +0,0 @@ -from sklearn.feature_extraction.text import TfidfVectorizer -from sklearn.metrics.pairwise import cosine_similarity -from sklearn.feature_extraction import text -from tabulate import tabulate - -def preprocess(text): - # lowercase - # TODO: other preproessing steps? - return text.lower() - -def get_top_similar_issues(mentor_note, top_n=3): - issues = [ - {"title": "students not understanding some core part of the conceptual approach and it's really affecting what they are doing practically", - "description": "students have gaps of understanding in their conceptual approach so that it's difficult to advance their practical design. Some common signals include can't articulate some part of their conceptual approach and vagueness in conceptual understanding."}, - {"title": "students being too hard on themselves", - "description": "students put a lot of pressure on themselves to work more and deliver, sometimes feeling bad from failing to meet a pre-establish goal or letting others down. They often have a high standard for themselves. Some common signals are being a perfectionist, being stressed or anxious, and having fear of failure."}, - {"title": "student not planning with clear deliverables", - "description": "when students plan their sprint, they don't have a clear deliverable in mind such as a prototype, user journey, or a section of the canvases that would clearly show how they addressed their riskiest risk. Some common signals are story with empty purpose/deliverable in sprint log, their idea of what form of deliverable would showcase their new understanding is undeveloped or vague."} - ] - mentor_note = preprocess(mentor_note) - - issue_descriptions = [preprocess(issue['description'] + issue['title']) for issue in issues] - - # Corpus = an array of mentor's note + descriptions - documents = [mentor_note] + issue_descriptions - - # Create TF-IDF vectorizer - stop_words = list(text.ENGLISH_STOP_WORDS) + ["issue", "doing", "having", "lot"] # TODO: add DTR specific stop words - vectorizer = TfidfVectorizer(stop_words=stop_words) - tfidf_matrix = vectorizer.fit_transform(documents) - - # Print TF-IDF vectors - feature_names = vectorizer.get_feature_names_out() - tfidf_table = [[feature_names[i]] + [f"{tfidf_matrix[j, i]:.2f}" for j in range(tfidf_matrix.shape[0])] for i in range(tfidf_matrix.shape[1])] - print("TF-IDF Matrix:") - print(tabulate(tfidf_table, headers=["Term"] + ["Document " + str(i+1) for i in range(len(documents))])) - - # Compute cosine similarity between mentor's note and issue descriptions - similarities = cosine_similarity(tfidf_matrix[0:1], tfidf_matrix[1:])[0] - - # Get top similar issues - top_indices = similarities.argsort()[-top_n:][::-1] - top_similar_issues = [(issues[i]['title'], similarities[i]) for i in top_indices] - - return top_similar_issues - -# mentor_note = "Ella being too hard on herself and not focusing on risks (when everything looks like one) - Ended up over focusing on what happened in an ineffective user test - Freaked out about a poor user test and that drove a lot of her attention" -# # mentor_note = "Purpose missing because they are still not explicit about what milestones they want to hit --- the deliverables are unclear too so it's all related? Not having a clear sense of what the deliverable should actually be or look like" - -# top_similar_issues = get_top_similar_issues(mentor_note, issues) -# print("Top similar issues:", top_similar_issues) diff --git a/package.json b/package.json index dd5fd03..cedeee6 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ "@mantine/next": "^6.0.21", "@vygruppen/spor-accordion-react": "^1.0.1", "blockly": "^10.3.1", + "child_process": "^1.0.2", "dotenv": "^16.4.4", "embla-carousel-react": "^7.1.0", "framer-motion": "^11.0.5", diff --git a/pages/api/test/get_scripts.js b/pages/api/test/get_scripts.js deleted file mode 100644 index 9d1aa90..0000000 --- a/pages/api/test/get_scripts.js +++ /dev/null @@ -1,7 +0,0 @@ -// export default async function GetScript(req, res) { -// let script_id = parseInt(req.query.script) - -// let data = await connectMongo({find: "scripts", filter: {script: script_id}}) - -// res.json(data) -// } \ No newline at end of file diff --git a/utils/connectMongo.js b/utils/connectMongo.js index 41ed424..c5f646e 100644 --- a/utils/connectMongo.js +++ b/utils/connectMongo.js @@ -1,7 +1,7 @@ const { MongoClient, ServerApiVersion } = require('mongodb'); // Create a MongoClient with a MongoClientOptions object to set the Stable API version -export default async function connect(command) { +async function connect(command) { const client = new MongoClient(process.env.MONGO_URI, { serverApi: { version: ServerApiVersion.v1, @@ -14,26 +14,23 @@ export default async function connect(command) { let response = null try { - // Connect the client to the server (optional starting in v4.7) await client.connect(); // Send a ping to confirm a successful connection output = await client.db("test").command(command); } finally { - // Ensures that the client will close when you finish/error await client.close(); } if (command.insert){ response = output.ok - // console.log('CONNECT INSERT COMMAND') } else if (command.findAndModify) { response = output?.value - // console.log('CONNECT findAndModify COMMAND') - // console.log('MODIFIED: ', response) } else if (command.find || command.filter) { response = output?.cursor.firstBatch } return response -} \ No newline at end of file +} + +module.exports = connect; \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 2b814ff..f2ef0f2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2004,6 +2004,11 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +child_process@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/child_process/-/child_process-1.0.2.tgz#b1f7e7fc73d25e7fd1d455adc94e143830182b5a" + integrity sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g== + chokidar@^3.5.3: version "3.6.0" resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz" @@ -4704,6 +4709,7 @@ streamsearch@^1.1.0: integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== "string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0: + name string-width-cjs version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== From 92268b0f2035ad76a8cefea5dde7c2ea506e66bd Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 9 Apr 2024 21:08:52 -0500 Subject: [PATCH 089/111] Changing fetch RClib to serverside --- components/diagnosis/SuggestedIssues.tsx | 6 +- lib/TFIDF.js | 25 +- package-lock.json | 9388 ---------------------- pages/response.tsx | 25 +- 4 files changed, 25 insertions(+), 9419 deletions(-) delete mode 100644 package-lock.json diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index 9ed9da3..73b1edf 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -6,13 +6,13 @@ import { getTopSimilarIssues } from '../../lib/TFIDF.js'; // insight: string; // setTabs: // } -const SuggestedIssues: React.FC = ({insight, setTabs}) => { +const SuggestedIssues: React.FC = ({insight, setTabs, issueLib}) => { const [result, setResult] = useState([]); - + useEffect(() => { const fetchSimilarIssues = async () => { if (insight){ - const topSimilarIssues = await getTopSimilarIssues(insight); + const topSimilarIssues = await getTopSimilarIssues(issueLib, insight); setResult(topSimilarIssues); } }; diff --git a/lib/TFIDF.js b/lib/TFIDF.js index 20f5970..e84b8c9 100644 --- a/lib/TFIDF.js +++ b/lib/TFIDF.js @@ -1,20 +1,6 @@ const natural = require('natural'); const _ = require('lodash'); -const { ENGLISH_STOP_WORDS } = require('./stopWords.js'); -const connectMongo = require("../utils/connectMongo.js") - -async function getIssuesFromDatabase() { - try { - const issues = await connectMongo({ find: "RCLibrary" }); - return issues.map(issue => ({ - title: issue.issue_title, - description: issue.description - })); - } catch (error) { - console.error("Error fetching issues from database:", error); - return []; - } -} +const { ENGLISH_STOP_WORDS } = require('./stopWords.js') function preprocess(text) { return text.toLowerCase(); @@ -27,10 +13,7 @@ function cosineSimilarity(vectorA, vectorB) { return dotProduct / (magnitudeA * magnitudeB); } -async function getTopSimilarIssues(mentorNote, topN = 3) { - const issues = await getIssuesFromDatabase(); - console.log(issues) - +function getTopSimilarIssues(issues, mentorNote, topN = 3) { mentorNote = preprocess(mentorNote); const issueDescriptions = issues.map(issue => preprocess(issue.description + issue.title)); @@ -83,12 +66,12 @@ async function getTopSimilarIssues(mentorNote, topN = 3) { module.exports = { getTopSimilarIssues }; -// async function testTFIDF() { +// function testTFIDF() { // const mentorNote = "Ella being too hard on herself and not focusing on risks (when everything looks like one) - Ended up over focusing on what happened in an ineffective user test - Freaked out about a poor user test and that drove a lot of her attention"; // // const mentorNote = "Purpose missing because they are still not explicit about what milestones they want to hit --- the deliverables are unclear too so it's all related? Not having a clear sense of what the deliverable should actually be or look like" // try { -// const topSimilarIssues = await getTopSimilarIssues(mentorNote); +// const topSimilarIssues = getTopSimilarIssues(mentorNote); // console.log("Top similar issues:", topSimilarIssues); // } catch (error) { // console.error("Error:", error); diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 9691a26..0000000 --- a/package-lock.json +++ /dev/null @@ -1,9388 +0,0 @@ -{ - "name": "orchestration-scripting-interfaces", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "dependencies": { - "@chakra-ui/react": "^2.8.2", - "@dnd-kit/core": "^6.1.0", - "@dnd-kit/sortable": "^8.0.0", - "@dnd-kit/utilities": "^3.2.2", - "@emotion/react": "^11.11.3", - "@emotion/server": "^11.11.0", - "@emotion/styled": "^11.11.0", - "@mantine/carousel": "^6.0.21", - "@mantine/core": "^6.0.21", - "@mantine/hooks": "^6.0.21", - "@mantine/next": "^6.0.21", - "@vygruppen/spor-accordion-react": "^1.0.1", - "blockly": "^10.3.1", - "dotenv": "^16.4.4", - "embla-carousel-react": "^7.1.0", - "framer-motion": "^11.0.5", - "lodash": "^4.17.21", - "ml-distance": "^4.0.1", - "mongo": "^0.1.0", - "mongoose": "^8.1.2", - "natural": "^6.12.0", - "next": "latest", - "node-tfidf": "^0.0.2", - "p5": "^1.9.0", - "react": "18.2.0", - "react-beautiful-dnd": "^13.1.1", - "react-blockly": "^8.1.1", - "react-dom": "18.2.0", - "react-modal": "^3.16.1", - "react-sortable-hoc": "^2.0.0", - "reactstrap": "^9.2.2" - }, - "devDependencies": { - "@types/node": "20.11.17", - "@types/p5": "^1.7.6", - "@types/react": "18.2.55", - "@types/react-beautiful-dnd": "^13.1.8", - "@types/react-dom": "18.2.19", - "autoprefixer": "^10.4.17", - "eslint": "^8.56.0", - "eslint-config-next": "^14.1.0", - "eslint-config-prettier": "^9.1.0", - "postcss": "^8.4.35", - "prettier": "^3.2.5", - "tailwindcss": "^3.4.1", - "typescript": "^5.4.4" - }, - "engines": { - "node": ">18.x" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@alloc/quick-lru": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", - "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", - "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", - "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@chakra-ui/accordion": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.3.1.tgz", - "integrity": "sha512-FSXRm8iClFyU+gVaXisOSEw0/4Q+qZbFRiuhIAkVU6Boj0FxAMrlo9a8AV5TuF77rgaHytCdHk0Ng+cyUijrag==", - "license": "MIT", - "dependencies": { - "@chakra-ui/descendant": "3.1.0", - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-use-controllable-state": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.1.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/alert": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.2.2.tgz", - "integrity": "sha512-jHg4LYMRNOJH830ViLuicjb3F+v6iriE/2G5T+Sd0Hna04nukNJ1MxUmBPE+vI22me2dIflfelu2v9wdB6Pojw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/spinner": "2.1.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/anatomy": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.2.2.tgz", - "integrity": "sha512-MV6D4VLRIHr4PkW4zMyqfrNS1mPlCTiCXwvYGtDFQYr+xHFfonhAuf9WjsSc0nyp2m0OdkSLnzmVKkZFLo25Tg==", - "license": "MIT" - }, - "node_modules/@chakra-ui/avatar": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.3.0.tgz", - "integrity": "sha512-8gKSyLfygnaotbJbDMHDiJoF38OHXUYVme4gGxZ1fLnQEdPVEaIWfH+NndIjOM0z8S+YEFnT9KyGMUtvPrBk3g==", - "license": "MIT", - "dependencies": { - "@chakra-ui/image": "2.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/breadcrumb": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.2.0.tgz", - "integrity": "sha512-4cWCG24flYBxjruRi4RJREWTGF74L/KzI2CognAW/d/zWR0CjiScuJhf37Am3LFbCySP6WSoyBOtTIoTA4yLEA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/breakpoint-utils": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.8.tgz", - "integrity": "sha512-Pq32MlEX9fwb5j5xx8s18zJMARNHlQZH2VH1RZgfgRDpp7DcEgtRW5AInfN5CfqdHLO1dGxA7I3MqEuL5JnIsA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - } - }, - "node_modules/@chakra-ui/button": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-2.1.0.tgz", - "integrity": "sha512-95CplwlRKmmUXkdEp/21VkEWgnwcx2TOBG6NfYlsuLBDHSLlo5FKIiE2oSi4zXc4TLcopGcWPNcm/NDaSC5pvA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/spinner": "2.1.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/card": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/card/-/card-2.2.0.tgz", - "integrity": "sha512-xUB/k5MURj4CtPAhdSoXZidUbm8j3hci9vnc+eZJVDqhDOShNlD6QeniQNRPRys4lWAQLCbFcrwL29C8naDi6g==", - "license": "MIT", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/checkbox": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.3.2.tgz", - "integrity": "sha512-85g38JIXMEv6M+AcyIGLh7igNtfpAN6KGQFYxY9tBj0eWvWk4NKQxvqqyVta0bSAyIl1rixNIIezNpNWk2iO4g==", - "license": "MIT", - "dependencies": { - "@chakra-ui/form-control": "2.2.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.1.0", - "@chakra-ui/react-use-controllable-state": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/react-use-safe-layout-effect": "2.1.0", - "@chakra-ui/react-use-update-effect": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/visually-hidden": "2.2.0", - "@zag-js/focus-visible": "0.16.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/clickable": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.1.0.tgz", - "integrity": "sha512-flRA/ClPUGPYabu+/GLREZVZr9j2uyyazCAUHAdrTUEdDYCr31SVGhgh7dgKdtq23bOvAQJpIJjw/0Bs0WvbXw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/close-button": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.1.1.tgz", - "integrity": "sha512-gnpENKOanKexswSVpVz7ojZEALl2x5qjLYNqSQGbxz+aP9sOXPfUS56ebyBrre7T7exuWGiFeRwnM0oVeGPaiw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/icon": "3.2.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/color-mode": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.2.0.tgz", - "integrity": "sha512-niTEA8PALtMWRI9wJ4LL0CSBDo8NBfLNp4GD6/0hstcm3IlbBHTVKxN6HwSaoNYfphDQLxCjT4yG+0BJA5tFpg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-safe-layout-effect": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/control-box": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.1.0.tgz", - "integrity": "sha512-gVrRDyXFdMd8E7rulL0SKeoljkLQiPITFnsyMO8EFHNZ+AHt5wK4LIguYVEq88APqAGZGfHFWXr79RYrNiE3Mg==", - "license": "MIT", - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/counter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.1.0.tgz", - "integrity": "sha512-s6hZAEcWT5zzjNz2JIWUBzRubo9la/oof1W7EKZVVfPYHERnl5e16FmBC79Yfq8p09LQ+aqFKm/etYoJMMgghw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/number-utils": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/css-reset": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.3.0.tgz", - "integrity": "sha512-cQwwBy5O0jzvl0K7PLTLgp8ijqLPKyuEMiDXwYzl95seD3AoeuoCLyzZcJtVqaUZ573PiBdAbY/IlZcwDOItWg==", - "license": "MIT", - "peerDependencies": { - "@emotion/react": ">=10.0.35", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/descendant": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.1.0.tgz", - "integrity": "sha512-VxCIAir08g5w27klLyi7PVo8BxhW4tgU/lxQyujkmi4zx7hT9ZdrcQLAted/dAa+aSIZ14S1oV0Q9lGjsAdxUQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/dom-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.1.0.tgz", - "integrity": "sha512-ZmF2qRa1QZ0CMLU8M1zCfmw29DmPNtfjR9iTo74U5FPr3i1aoAh7fbJ4qAlZ197Xw9eAW28tvzQuoVWeL5C7fQ==", - "license": "MIT" - }, - "node_modules/@chakra-ui/editable": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-3.1.0.tgz", - "integrity": "sha512-j2JLrUL9wgg4YA6jLlbU88370eCRyor7DZQD9lzpY95tSOXpTljeg3uF9eOmDnCs6fxp3zDWIfkgMm/ExhcGTg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.1.0", - "@chakra-ui/react-use-controllable-state": "2.1.0", - "@chakra-ui/react-use-focus-on-pointer-down": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/react-use-safe-layout-effect": "2.1.0", - "@chakra-ui/react-use-update-effect": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/event-utils": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.8.tgz", - "integrity": "sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw==", - "license": "MIT" - }, - "node_modules/@chakra-ui/focus-lock": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.1.0.tgz", - "integrity": "sha512-EmGx4PhWGjm4dpjRqM4Aa+rCWBxP+Rq8Uc/nAVnD4YVqkEhBkrPTpui2lnjsuxqNaZ24fIAZ10cF1hlpemte/w==", - "license": "MIT", - "dependencies": { - "@chakra-ui/dom-utils": "2.1.0", - "react-focus-lock": "^2.9.4" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/form-control": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.2.0.tgz", - "integrity": "sha512-wehLC1t4fafCVJ2RvJQT2jyqsAwX7KymmiGqBu7nQoQz8ApTkGABWpo/QwDh3F/dBLrouHDoOvGmYTqft3Mirw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/hooks": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.2.1.tgz", - "integrity": "sha512-RQbTnzl6b1tBjbDPf9zGRo9rf/pQMholsOudTxjy4i9GfTfz6kgp5ValGjQm2z7ng6Z31N1cnjZ1AlSzQ//ZfQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-utils": "2.0.12", - "@chakra-ui/utils": "2.0.15", - "compute-scroll-into-view": "3.0.3", - "copy-to-clipboard": "3.3.3" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/icon": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.2.0.tgz", - "integrity": "sha512-xxjGLvlX2Ys4H0iHrI16t74rG9EBcpFvJ3Y3B7KMQTrnW34Kf7Da/UC8J67Gtx85mTHW020ml85SVPKORWNNKQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/image": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-2.1.0.tgz", - "integrity": "sha512-bskumBYKLiLMySIWDGcz0+D9Th0jPvmX6xnRMs4o92tT3Od/bW26lahmV2a2Op2ItXeCmRMY+XxJH5Gy1i46VA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-safe-layout-effect": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/input": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-2.1.2.tgz", - "integrity": "sha512-GiBbb3EqAA8Ph43yGa6Mc+kUPjh4Spmxp1Pkelr8qtudpc3p2PJOOebLpd90mcqw8UePPa+l6YhhPtp6o0irhw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/form-control": "2.2.0", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/layout": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.3.1.tgz", - "integrity": "sha512-nXuZ6WRbq0WdgnRgLw+QuxWAHuhDtVX8ElWqcTK+cSMFg/52eVP47czYBE5F35YhnoW2XBwfNoNgZ7+e8Z01Rg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/breakpoint-utils": "2.0.8", - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/lazy-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.5.tgz", - "integrity": "sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg==", - "license": "MIT" - }, - "node_modules/@chakra-ui/live-region": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.1.0.tgz", - "integrity": "sha512-ZOxFXwtaLIsXjqnszYYrVuswBhnIHHP+XIgK1vC6DePKtyK590Wg+0J0slDwThUAd4MSSIUa/nNX84x1GMphWw==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/media-query": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.3.0.tgz", - "integrity": "sha512-IsTGgFLoICVoPRp9ykOgqmdMotJG0CnPsKvGQeSFOB/dZfIujdVb14TYxDU4+MURXry1MhJ7LzZhv+Ml7cr8/g==", - "license": "MIT", - "dependencies": { - "@chakra-ui/breakpoint-utils": "2.0.8", - "@chakra-ui/react-env": "3.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/menu": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.2.1.tgz", - "integrity": "sha512-lJS7XEObzJxsOwWQh7yfG4H8FzFPRP5hVPN/CL+JzytEINCSBvsCDHrYPQGp7jzpCi8vnTqQQGQe0f8dwnXd2g==", - "license": "MIT", - "dependencies": { - "@chakra-ui/clickable": "2.1.0", - "@chakra-ui/descendant": "3.1.0", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/popper": "3.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-use-animation-state": "2.1.0", - "@chakra-ui/react-use-controllable-state": "2.1.0", - "@chakra-ui/react-use-disclosure": "2.1.0", - "@chakra-ui/react-use-focus-effect": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/react-use-outside-click": "2.2.0", - "@chakra-ui/react-use-update-effect": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.1.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/modal": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.3.1.tgz", - "integrity": "sha512-TQv1ZaiJMZN+rR9DK0snx/OPwmtaGH1HbZtlYt4W4s6CzyK541fxLRTjIXfEzIGpvNW+b6VFuFjbcR78p4DEoQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/close-button": "2.1.1", - "@chakra-ui/focus-lock": "2.1.0", - "@chakra-ui/portal": "2.1.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/transition": "2.1.0", - "aria-hidden": "^1.2.3", - "react-remove-scroll": "^2.5.6" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/number-input": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.1.2.tgz", - "integrity": "sha512-pfOdX02sqUN0qC2ysuvgVDiws7xZ20XDIlcNhva55Jgm095xjm8eVdIBfNm3SFbSUNxyXvLTW/YQanX74tKmuA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/counter": "2.1.0", - "@chakra-ui/form-control": "2.2.0", - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.1.0", - "@chakra-ui/react-use-event-listener": "2.1.0", - "@chakra-ui/react-use-interval": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/react-use-safe-layout-effect": "2.1.0", - "@chakra-ui/react-use-update-effect": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/number-utils": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.7.tgz", - "integrity": "sha512-yOGxBjXNvLTBvQyhMDqGU0Oj26s91mbAlqKHiuw737AXHt0aPllOthVUqQMeaYLwLCjGMg0jtI7JReRzyi94Dg==", - "license": "MIT" - }, - "node_modules/@chakra-ui/object-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.1.0.tgz", - "integrity": "sha512-tgIZOgLHaoti5PYGPTwK3t/cqtcycW0owaiOXoZOcpwwX/vlVb+H1jFsQyWiiwQVPt9RkoSLtxzXamx+aHH+bQ==", - "license": "MIT" - }, - "node_modules/@chakra-ui/pin-input": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.1.0.tgz", - "integrity": "sha512-x4vBqLStDxJFMt+jdAHHS8jbh294O53CPQJoL4g228P513rHylV/uPscYUHrVJXRxsHfRztQO9k45jjTYaPRMw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/descendant": "3.1.0", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-use-controllable-state": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/popover": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.2.1.tgz", - "integrity": "sha512-K+2ai2dD0ljvJnlrzesCDT9mNzLifE3noGKZ3QwLqd/K34Ym1W/0aL1ERSynrcG78NKoXS54SdEzkhCZ4Gn/Zg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/close-button": "2.1.1", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/popper": "3.1.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-animation-state": "2.1.0", - "@chakra-ui/react-use-disclosure": "2.1.0", - "@chakra-ui/react-use-focus-effect": "2.1.0", - "@chakra-ui/react-use-focus-on-pointer-down": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/popper": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.1.0.tgz", - "integrity": "sha512-ciDdpdYbeFG7og6/6J8lkTFxsSvwTdMLFkpVylAF6VNC22jssiWfquj2eyD4rJnzkRFPvIWJq8hvbfhsm+AjSg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@popperjs/core": "^2.9.3" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/portal": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.1.0.tgz", - "integrity": "sha512-9q9KWf6SArEcIq1gGofNcFPSWEyl+MfJjEUg/un1SMlQjaROOh3zYr+6JAwvcORiX7tyHosnmWC3d3wI2aPSQg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-use-safe-layout-effect": "2.1.0" - }, - "peerDependencies": { - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/progress": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.2.0.tgz", - "integrity": "sha512-qUXuKbuhN60EzDD9mHR7B67D7p/ZqNS2Aze4Pbl1qGGZfulPW0PY8Rof32qDtttDQBkzQIzFGE8d9QpAemToIQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-context": "2.1.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/provider": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.4.2.tgz", - "integrity": "sha512-w0Tef5ZCJK1mlJorcSjItCSbyvVuqpvyWdxZiVQmE6fvSJR83wZof42ux0+sfWD+I7rHSfj+f9nzhNaEWClysw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/css-reset": "2.3.0", - "@chakra-ui/portal": "2.1.0", - "@chakra-ui/react-env": "3.1.0", - "@chakra-ui/system": "2.6.2", - "@chakra-ui/utils": "2.0.15" - }, - "peerDependencies": { - "@emotion/react": "^11.0.0", - "@emotion/styled": "^11.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/radio": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.1.2.tgz", - "integrity": "sha512-n10M46wJrMGbonaghvSRnZ9ToTv/q76Szz284gv4QUWvyljQACcGrXIONUnQ3BIwbOfkRqSk7Xl/JgZtVfll+w==", - "license": "MIT", - "dependencies": { - "@chakra-ui/form-control": "2.2.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5", - "@zag-js/focus-visible": "0.16.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-2.8.2.tgz", - "integrity": "sha512-Hn0moyxxyCDKuR9ywYpqgX8dvjqwu9ArwpIb9wHNYjnODETjLwazgNIliCVBRcJvysGRiV51U2/JtJVrpeCjUQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/accordion": "2.3.1", - "@chakra-ui/alert": "2.2.2", - "@chakra-ui/avatar": "2.3.0", - "@chakra-ui/breadcrumb": "2.2.0", - "@chakra-ui/button": "2.1.0", - "@chakra-ui/card": "2.2.0", - "@chakra-ui/checkbox": "2.3.2", - "@chakra-ui/close-button": "2.1.1", - "@chakra-ui/control-box": "2.1.0", - "@chakra-ui/counter": "2.1.0", - "@chakra-ui/css-reset": "2.3.0", - "@chakra-ui/editable": "3.1.0", - "@chakra-ui/focus-lock": "2.1.0", - "@chakra-ui/form-control": "2.2.0", - "@chakra-ui/hooks": "2.2.1", - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/image": "2.1.0", - "@chakra-ui/input": "2.1.2", - "@chakra-ui/layout": "2.3.1", - "@chakra-ui/live-region": "2.1.0", - "@chakra-ui/media-query": "3.3.0", - "@chakra-ui/menu": "2.2.1", - "@chakra-ui/modal": "2.3.1", - "@chakra-ui/number-input": "2.1.2", - "@chakra-ui/pin-input": "2.1.0", - "@chakra-ui/popover": "2.2.1", - "@chakra-ui/popper": "3.1.0", - "@chakra-ui/portal": "2.1.0", - "@chakra-ui/progress": "2.2.0", - "@chakra-ui/provider": "2.4.2", - "@chakra-ui/radio": "2.1.2", - "@chakra-ui/react-env": "3.1.0", - "@chakra-ui/select": "2.1.2", - "@chakra-ui/skeleton": "2.1.0", - "@chakra-ui/skip-nav": "2.1.0", - "@chakra-ui/slider": "2.1.0", - "@chakra-ui/spinner": "2.1.0", - "@chakra-ui/stat": "2.1.1", - "@chakra-ui/stepper": "2.3.1", - "@chakra-ui/styled-system": "2.9.2", - "@chakra-ui/switch": "2.1.2", - "@chakra-ui/system": "2.6.2", - "@chakra-ui/table": "2.1.0", - "@chakra-ui/tabs": "3.0.0", - "@chakra-ui/tag": "3.1.1", - "@chakra-ui/textarea": "2.1.2", - "@chakra-ui/theme": "3.3.1", - "@chakra-ui/theme-utils": "2.0.21", - "@chakra-ui/toast": "7.0.2", - "@chakra-ui/tooltip": "2.3.1", - "@chakra-ui/transition": "2.1.0", - "@chakra-ui/utils": "2.0.15", - "@chakra-ui/visually-hidden": "2.2.0" - }, - "peerDependencies": { - "@emotion/react": "^11.0.0", - "@emotion/styled": "^11.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/react-children-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.6.tgz", - "integrity": "sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-context": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.1.0.tgz", - "integrity": "sha512-iahyStvzQ4AOwKwdPReLGfDesGG+vWJfEsn0X/NoGph/SkN+HXtv2sCfYFFR9k7bb+Kvc6YfpLlSuLvKMHi2+w==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-env": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-3.1.0.tgz", - "integrity": "sha512-Vr96GV2LNBth3+IKzr/rq1IcnkXv+MLmwjQH6C8BRtn3sNskgDFD5vLkVXcEhagzZMCh8FR3V/bzZPojBOyNhw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-safe-layout-effect": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-types": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-types/-/react-types-2.0.7.tgz", - "integrity": "sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-animation-state": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.1.0.tgz", - "integrity": "sha512-CFZkQU3gmDBwhqy0vC1ryf90BVHxVN8cTLpSyCpdmExUEtSEInSCGMydj2fvn7QXsz/za8JNdO2xxgJwxpLMtg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/dom-utils": "2.1.0", - "@chakra-ui/react-use-event-listener": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-callback-ref": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.1.0.tgz", - "integrity": "sha512-efnJrBtGDa4YaxDzDE90EnKD3Vkh5a1t3w7PhnRQmsphLy3g2UieasoKTlT2Hn118TwDjIv5ZjHJW6HbzXA9wQ==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-controllable-state": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.1.0.tgz", - "integrity": "sha512-QR/8fKNokxZUs4PfxjXuwl0fj/d71WPrmLJvEpCTkHjnzu7LnYvzoe2wB867IdooQJL0G1zBxl0Dq+6W1P3jpg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-disclosure": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.1.0.tgz", - "integrity": "sha512-Ax4pmxA9LBGMyEZJhhUZobg9C0t3qFE4jVF1tGBsrLDcdBeLR9fwOogIPY9Hf0/wqSlAryAimICbr5hkpa5GSw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-event-listener": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.1.0.tgz", - "integrity": "sha512-U5greryDLS8ISP69DKDsYcsXRtAdnTQT+jjIlRYZ49K/XhUR/AqVZCK5BkR1spTDmO9H8SPhgeNKI70ODuDU/Q==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-focus-effect": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.1.0.tgz", - "integrity": "sha512-xzVboNy7J64xveLcxTIJ3jv+lUJKDwRM7Szwn9tNzUIPD94O3qwjV7DDCUzN2490nSYDF4OBMt/wuDBtaR3kUQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/dom-utils": "2.1.0", - "@chakra-ui/react-use-event-listener": "2.1.0", - "@chakra-ui/react-use-safe-layout-effect": "2.1.0", - "@chakra-ui/react-use-update-effect": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-focus-on-pointer-down": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.1.0.tgz", - "integrity": "sha512-2jzrUZ+aiCG/cfanrolsnSMDykCAbv9EK/4iUyZno6BYb3vziucmvgKuoXbMPAzWNtwUwtuMhkby8rc61Ue+Lg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-event-listener": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-interval": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.1.0.tgz", - "integrity": "sha512-8iWj+I/+A0J08pgEXP1J1flcvhLBHkk0ln7ZvGIyXiEyM6XagOTJpwNhiu+Bmk59t3HoV/VyvyJTa+44sEApuw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-latest-ref": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.1.0.tgz", - "integrity": "sha512-m0kxuIYqoYB0va9Z2aW4xP/5b7BzlDeWwyXCH6QpT2PpW3/281L3hLCm1G0eOUcdVlayqrQqOeD6Mglq+5/xoQ==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-merge-refs": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.1.0.tgz", - "integrity": "sha512-lERa6AWF1cjEtWSGjxWTaSMvneccnAVH4V4ozh8SYiN9fSPZLlSG3kNxfNzdFvMEhM7dnP60vynF7WjGdTgQbQ==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-outside-click": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.2.0.tgz", - "integrity": "sha512-PNX+s/JEaMneijbgAM4iFL+f3m1ga9+6QK0E5Yh4s8KZJQ/bLwZzdhMz8J/+mL+XEXQ5J0N8ivZN28B82N1kNw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-pan-event": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.1.0.tgz", - "integrity": "sha512-xmL2qOHiXqfcj0q7ZK5s9UjTh4Gz0/gL9jcWPA6GVf+A0Od5imEDa/Vz+533yQKWiNSm1QGrIj0eJAokc7O4fg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/event-utils": "2.0.8", - "@chakra-ui/react-use-latest-ref": "2.1.0", - "framesync": "6.1.2" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-previous": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.1.0.tgz", - "integrity": "sha512-pjxGwue1hX8AFcmjZ2XfrQtIJgqbTF3Qs1Dy3d1krC77dEsiCUbQ9GzOBfDc8pfd60DrB5N2tg5JyHbypqh0Sg==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-safe-layout-effect": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.1.0.tgz", - "integrity": "sha512-Knbrrx/bcPwVS1TorFdzrK/zWA8yuU/eaXDkNj24IrKoRlQrSBFarcgAEzlCHtzuhufP3OULPkELTzz91b0tCw==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-size": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.1.0.tgz", - "integrity": "sha512-tbLqrQhbnqOjzTaMlYytp7wY8BW1JpL78iG7Ru1DlV4EWGiAmXFGvtnEt9HftU0NJ0aJyjgymkxfVGI55/1Z4A==", - "license": "MIT", - "dependencies": { - "@zag-js/element-size": "0.10.5" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-timeout": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.1.0.tgz", - "integrity": "sha512-cFN0sobKMM9hXUhyCofx3/Mjlzah6ADaEl/AXl5Y+GawB5rgedgAcu2ErAgarEkwvsKdP6c68CKjQ9dmTQlJxQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-use-callback-ref": "2.1.0" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-use-update-effect": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.1.0.tgz", - "integrity": "sha512-ND4Q23tETaR2Qd3zwCKYOOS1dfssojPLJMLvUtUbW5M9uW1ejYWgGUobeAiOVfSplownG8QYMmHTP86p/v0lbA==", - "license": "MIT", - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/react-utils": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.12.tgz", - "integrity": "sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/utils": "2.0.15" - }, - "peerDependencies": { - "react": ">=18" - } - }, - "node_modules/@chakra-ui/select": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/select/-/select-2.1.2.tgz", - "integrity": "sha512-ZwCb7LqKCVLJhru3DXvKXpZ7Pbu1TDZ7N0PdQ0Zj1oyVLJyrpef1u9HR5u0amOpqcH++Ugt0f5JSmirjNlctjA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/form-control": "2.2.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/shared-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.5.tgz", - "integrity": "sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q==", - "license": "MIT" - }, - "node_modules/@chakra-ui/skeleton": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.1.0.tgz", - "integrity": "sha512-JNRuMPpdZGd6zFVKjVQ0iusu3tXAdI29n4ZENYwAJEMf/fN0l12sVeirOxkJ7oEL0yOx2AgEYFSKdbcAgfUsAQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/media-query": "3.3.0", - "@chakra-ui/react-use-previous": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/skip-nav": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/skip-nav/-/skip-nav-2.1.0.tgz", - "integrity": "sha512-Hk+FG+vadBSH0/7hwp9LJnLjkO0RPGnx7gBJWI4/SpoJf3e4tZlWYtwGj0toYY4aGKl93jVghuwGbDBEMoHDug==", - "license": "MIT", - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/slider": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.1.0.tgz", - "integrity": "sha512-lUOBcLMCnFZiA/s2NONXhELJh6sY5WtbRykPtclGfynqqOo47lwWJx+VP7xaeuhDOPcWSSecWc9Y1BfPOCz9cQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/number-utils": "2.0.7", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-callback-ref": "2.1.0", - "@chakra-ui/react-use-controllable-state": "2.1.0", - "@chakra-ui/react-use-latest-ref": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/react-use-pan-event": "2.1.0", - "@chakra-ui/react-use-size": "2.1.0", - "@chakra-ui/react-use-update-effect": "2.1.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/spinner": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.1.0.tgz", - "integrity": "sha512-hczbnoXt+MMv/d3gE+hjQhmkzLiKuoTo42YhUG7Bs9OSv2lg1fZHW1fGNRFP3wTi6OIbD044U1P9HK+AOgFH3g==", - "license": "MIT", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/stat": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.1.1.tgz", - "integrity": "sha512-LDn0d/LXQNbAn2KaR3F1zivsZCewY4Jsy1qShmfBMKwn6rI8yVlbvu6SiA3OpHS0FhxbsZxQI6HefEoIgtqY6Q==", - "license": "MIT", - "dependencies": { - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/stepper": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/stepper/-/stepper-2.3.1.tgz", - "integrity": "sha512-ky77lZbW60zYkSXhYz7kbItUpAQfEdycT0Q4bkHLxfqbuiGMf8OmgZOQkOB9uM4v0zPwy2HXhe0vq4Dd0xa55Q==", - "license": "MIT", - "dependencies": { - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/styled-system": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.9.2.tgz", - "integrity": "sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg==", - "license": "MIT", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5", - "csstype": "^3.1.2", - "lodash.mergewith": "4.6.2" - } - }, - "node_modules/@chakra-ui/switch": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.1.2.tgz", - "integrity": "sha512-pgmi/CC+E1v31FcnQhsSGjJnOE2OcND4cKPyTE+0F+bmGm48Q/b5UmKD9Y+CmZsrt/7V3h8KNczowupfuBfIHA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/checkbox": "2.3.2", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/system": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/system/-/system-2.6.2.tgz", - "integrity": "sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/color-mode": "2.2.0", - "@chakra-ui/object-utils": "2.1.0", - "@chakra-ui/react-utils": "2.0.12", - "@chakra-ui/styled-system": "2.9.2", - "@chakra-ui/theme-utils": "2.0.21", - "@chakra-ui/utils": "2.0.15", - "react-fast-compare": "3.2.2" - }, - "peerDependencies": { - "@emotion/react": "^11.0.0", - "@emotion/styled": "^11.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/table": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/table/-/table-2.1.0.tgz", - "integrity": "sha512-o5OrjoHCh5uCLdiUb0Oc0vq9rIAeHSIRScc2ExTC9Qg/uVZl2ygLrjToCaKfaaKl1oQexIeAcZDKvPG8tVkHyQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/tabs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-3.0.0.tgz", - "integrity": "sha512-6Mlclp8L9lqXmsGWF5q5gmemZXOiOYuh0SGT/7PgJVNPz3LXREXlXg2an4MBUD8W5oTkduCX+3KTMCwRrVrDYw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/clickable": "2.1.0", - "@chakra-ui/descendant": "3.1.0", - "@chakra-ui/lazy-utils": "2.0.5", - "@chakra-ui/react-children-utils": "2.0.6", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-use-controllable-state": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/react-use-safe-layout-effect": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/tag": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/tag/-/tag-3.1.1.tgz", - "integrity": "sha512-Bdel79Dv86Hnge2PKOU+t8H28nm/7Y3cKd4Kfk9k3lOpUh4+nkSGe58dhRzht59lEqa4N9waCgQiBdkydjvBXQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/icon": "3.2.0", - "@chakra-ui/react-context": "2.1.0" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/textarea": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.1.2.tgz", - "integrity": "sha512-ip7tvklVCZUb2fOHDb23qPy/Fr2mzDOGdkrpbNi50hDCiV4hFX02jdQJdi3ydHZUyVgZVBKPOJ+lT9i7sKA2wA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/form-control": "2.2.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/theme": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme/-/theme-3.3.1.tgz", - "integrity": "sha512-Hft/VaT8GYnItGCBbgWd75ICrIrIFrR7lVOhV/dQnqtfGqsVDlrztbSErvMkoPKt0UgAkd9/o44jmZ6X4U2nZQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/anatomy": "2.2.2", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/theme-tools": "2.1.2" - }, - "peerDependencies": { - "@chakra-ui/styled-system": ">=2.8.0" - } - }, - "node_modules/@chakra-ui/theme-tools": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.1.2.tgz", - "integrity": "sha512-Qdj8ajF9kxY4gLrq7gA+Azp8CtFHGO9tWMN2wfF9aQNgG9AuMhPrUzMq9AMQ0MXiYcgNq/FD3eegB43nHVmXVA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/anatomy": "2.2.2", - "@chakra-ui/shared-utils": "2.0.5", - "color2k": "^2.0.2" - }, - "peerDependencies": { - "@chakra-ui/styled-system": ">=2.0.0" - } - }, - "node_modules/@chakra-ui/theme-utils": { - "version": "2.0.21", - "resolved": "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.21.tgz", - "integrity": "sha512-FjH5LJbT794r0+VSCXB3lT4aubI24bLLRWB+CuRKHijRvsOg717bRdUN/N1fEmEpFnRVrbewttWh/OQs0EWpWw==", - "license": "MIT", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/styled-system": "2.9.2", - "@chakra-ui/theme": "3.3.1", - "lodash.mergewith": "4.6.2" - } - }, - "node_modules/@chakra-ui/toast": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@chakra-ui/toast/-/toast-7.0.2.tgz", - "integrity": "sha512-yvRP8jFKRs/YnkuE41BVTq9nB2v/KDRmje9u6dgDmE5+1bFt3bwjdf9gVbif4u5Ve7F7BGk5E093ARRVtvLvXA==", - "license": "MIT", - "dependencies": { - "@chakra-ui/alert": "2.2.2", - "@chakra-ui/close-button": "2.1.1", - "@chakra-ui/portal": "2.1.0", - "@chakra-ui/react-context": "2.1.0", - "@chakra-ui/react-use-timeout": "2.1.0", - "@chakra-ui/react-use-update-effect": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5", - "@chakra-ui/styled-system": "2.9.2", - "@chakra-ui/theme": "3.3.1" - }, - "peerDependencies": { - "@chakra-ui/system": "2.6.2", - "framer-motion": ">=4.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/tooltip": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.3.1.tgz", - "integrity": "sha512-Rh39GBn/bL4kZpuEMPPRwYNnccRCL+w9OqamWHIB3Qboxs6h8cOyXfIdGxjo72lvhu1QI/a4KFqkM3St+WfC0A==", - "license": "MIT", - "dependencies": { - "@chakra-ui/dom-utils": "2.1.0", - "@chakra-ui/popper": "3.1.0", - "@chakra-ui/portal": "2.1.0", - "@chakra-ui/react-types": "2.0.7", - "@chakra-ui/react-use-disclosure": "2.1.0", - "@chakra-ui/react-use-event-listener": "2.1.0", - "@chakra-ui/react-use-merge-refs": "2.1.0", - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "framer-motion": ">=4.0.0", - "react": ">=18", - "react-dom": ">=18" - } - }, - "node_modules/@chakra-ui/transition": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.1.0.tgz", - "integrity": "sha512-orkT6T/Dt+/+kVwJNy7zwJ+U2xAZ3EU7M3XCs45RBvUnZDr/u9vdmaM/3D/rOpmQJWgQBwKPJleUXrYWUagEDQ==", - "license": "MIT", - "dependencies": { - "@chakra-ui/shared-utils": "2.0.5" - }, - "peerDependencies": { - "framer-motion": ">=4.0.0", - "react": ">=18" - } - }, - "node_modules/@chakra-ui/utils": { - "version": "2.0.15", - "resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.15.tgz", - "integrity": "sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA==", - "license": "MIT", - "dependencies": { - "@types/lodash.mergewith": "4.6.7", - "css-box-model": "1.2.1", - "framesync": "6.1.2", - "lodash.mergewith": "4.6.2" - } - }, - "node_modules/@chakra-ui/visually-hidden": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.2.0.tgz", - "integrity": "sha512-KmKDg01SrQ7VbTD3+cPWf/UfpF5MSwm3v7MWi0n5t8HnnadT13MF0MJCDSXbBWnzLv1ZKJ6zlyAOeARWX+DpjQ==", - "license": "MIT", - "peerDependencies": { - "@chakra-ui/system": ">=2.0.0", - "react": ">=18" - } - }, - "node_modules/@dnd-kit/accessibility": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.1.0.tgz", - "integrity": "sha512-ea7IkhKvlJUv9iSHJOnxinBcoOI3ppGnnL+VDJ75O45Nss6HtZd8IdN8touXPDtASfeI2T2LImb8VOZcL47wjQ==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@dnd-kit/core": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@dnd-kit/core/-/core-6.1.0.tgz", - "integrity": "sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg==", - "license": "MIT", - "dependencies": { - "@dnd-kit/accessibility": "^3.1.0", - "@dnd-kit/utilities": "^3.2.2", - "tslib": "^2.0.0" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@dnd-kit/sortable": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-8.0.0.tgz", - "integrity": "sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==", - "license": "MIT", - "dependencies": { - "@dnd-kit/utilities": "^3.2.2", - "tslib": "^2.0.0" - }, - "peerDependencies": { - "@dnd-kit/core": "^6.1.0", - "react": ">=16.8.0" - } - }, - "node_modules/@dnd-kit/utilities": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.2.tgz", - "integrity": "sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@emotion/babel-plugin": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", - "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/serialize": "^1.1.2", - "babel-plugin-macros": "^3.1.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/cache": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", - "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", - "license": "MIT", - "dependencies": { - "@emotion/memoize": "^0.8.1", - "@emotion/sheet": "^1.2.2", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "stylis": "4.2.0" - } - }, - "node_modules/@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==", - "license": "MIT" - }, - "node_modules/@emotion/is-prop-valid": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", - "license": "MIT", - "optional": true, - "dependencies": { - "@emotion/memoize": "0.7.4" - } - }, - "node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==", - "license": "MIT", - "optional": true - }, - "node_modules/@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==", - "license": "MIT" - }, - "node_modules/@emotion/react": { - "version": "11.11.3", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz", - "integrity": "sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.11.0", - "@emotion/cache": "^11.11.0", - "@emotion/serialize": "^1.1.3", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "hoist-non-react-statics": "^3.3.1" - }, - "peerDependencies": { - "react": ">=16.8.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@emotion/serialize": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", - "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", - "license": "MIT", - "dependencies": { - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/unitless": "^0.8.1", - "@emotion/utils": "^1.2.1", - "csstype": "^3.0.2" - } - }, - "node_modules/@emotion/server": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/server/-/server-11.11.0.tgz", - "integrity": "sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA==", - "license": "MIT", - "dependencies": { - "@emotion/utils": "^1.2.1", - "html-tokenize": "^2.0.0", - "multipipe": "^1.0.2", - "through": "^2.3.8" - }, - "peerDependencies": { - "@emotion/css": "^11.0.0-rc.0" - }, - "peerDependenciesMeta": { - "@emotion/css": { - "optional": true - } - } - }, - "node_modules/@emotion/sheet": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", - "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==", - "license": "MIT" - }, - "node_modules/@emotion/styled": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz", - "integrity": "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.18.3", - "@emotion/babel-plugin": "^11.11.0", - "@emotion/is-prop-valid": "^1.2.1", - "@emotion/serialize": "^1.1.2", - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", - "@emotion/utils": "^1.2.1" - }, - "peerDependencies": { - "@emotion/react": "^11.0.0-rc.0", - "react": ">=16.8.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@emotion/styled/node_modules/@emotion/is-prop-valid": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", - "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", - "license": "MIT", - "dependencies": { - "@emotion/memoize": "^0.8.1" - } - }, - "node_modules/@emotion/unitless": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==", - "license": "MIT" - }, - "node_modules/@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", - "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", - "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@emotion/utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", - "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==", - "license": "MIT" - }, - "node_modules/@emotion/weak-memoize": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", - "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==", - "license": "MIT" - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@floating-ui/core": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", - "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", - "license": "MIT", - "dependencies": { - "@floating-ui/utils": "^0.2.1" - } - }, - "node_modules/@floating-ui/dom": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", - "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", - "license": "MIT", - "dependencies": { - "@floating-ui/core": "^1.0.0", - "@floating-ui/utils": "^0.2.0" - } - }, - "node_modules/@floating-ui/react": { - "version": "0.19.2", - "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.19.2.tgz", - "integrity": "sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w==", - "license": "MIT", - "dependencies": { - "@floating-ui/react-dom": "^1.3.0", - "aria-hidden": "^1.1.3", - "tabbable": "^6.0.1" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@floating-ui/react-dom": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-1.3.0.tgz", - "integrity": "sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==", - "license": "MIT", - "dependencies": { - "@floating-ui/dom": "^1.2.1" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@floating-ui/utils": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", - "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==", - "license": "MIT" - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", - "debug": "^4.3.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", - "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.4.tgz", - "integrity": "sha512-Oud2QPM5dHviZNn4y/WhhYKSXksv+1xLEIsNrAbGcFzUN3ubqWRFT5gwPchNc5NuzILOU4tPBDTZ4VwhL8Y7cw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.23", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.23.tgz", - "integrity": "sha512-9/4foRoUKp8s96tSkh8DlAAc5A0Ty8vLXld+l9gjKKY6ckwI8G15f0hskGmuLZu78ZlGa1vtsfOa+lnB4vG6Jg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@mantine/carousel": { - "version": "6.0.21", - "resolved": "https://registry.npmjs.org/@mantine/carousel/-/carousel-6.0.21.tgz", - "integrity": "sha512-cQAQ5RlVhSrYA8aez/euzs5nQKcGcwxVTS/gf46GEZ0gcDJXlymZPbc2OopH/WDczEaMWOF7wz8R9+uG1hYNCg==", - "license": "MIT", - "dependencies": { - "@mantine/utils": "6.0.21" - }, - "peerDependencies": { - "@mantine/core": "6.0.21", - "@mantine/hooks": "6.0.21", - "embla-carousel-react": "^7.0.0", - "react": ">=16.8.0" - } - }, - "node_modules/@mantine/core": { - "version": "6.0.21", - "resolved": "https://registry.npmjs.org/@mantine/core/-/core-6.0.21.tgz", - "integrity": "sha512-Kx4RrRfv0I+cOCIcsq/UA2aWcYLyXgW3aluAuW870OdXnbII6qg7RW28D+r9D76SHPxWFKwIKwmcucAG08Divg==", - "license": "MIT", - "dependencies": { - "@floating-ui/react": "^0.19.1", - "@mantine/styles": "6.0.21", - "@mantine/utils": "6.0.21", - "@radix-ui/react-scroll-area": "1.0.2", - "react-remove-scroll": "^2.5.5", - "react-textarea-autosize": "8.3.4" - }, - "peerDependencies": { - "@mantine/hooks": "6.0.21", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@mantine/hooks": { - "version": "6.0.21", - "resolved": "https://registry.npmjs.org/@mantine/hooks/-/hooks-6.0.21.tgz", - "integrity": "sha512-sYwt5wai25W6VnqHbS5eamey30/HD5dNXaZuaVEAJ2i2bBv8C0cCiczygMDpAFiSYdXoSMRr/SZ2CrrPTzeNew==", - "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@mantine/next": { - "version": "6.0.21", - "resolved": "https://registry.npmjs.org/@mantine/next/-/next-6.0.21.tgz", - "integrity": "sha512-McaVZZsmUol3yY92mSJSgcMQKFST97pVxNtI7Z52YocyuTjPPFXmqxF/TFj24A7noh1wzvRCPjfd9HX66sY+iQ==", - "license": "MIT", - "dependencies": { - "@mantine/ssr": "6.0.21", - "@mantine/styles": "6.0.21" - }, - "peerDependencies": { - "next": "*", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@mantine/ssr": { - "version": "6.0.21", - "resolved": "https://registry.npmjs.org/@mantine/ssr/-/ssr-6.0.21.tgz", - "integrity": "sha512-TVPiz7VxbBntT42UFg4LCRqsv6HM5nvL5d2jBBbFcg9oztJ/5KVGhrtWbu2+kpq/uWWOpmE0sKDs3HQ/qr1PdQ==", - "license": "MIT", - "dependencies": { - "@mantine/styles": "6.0.21", - "html-react-parser": "1.4.12" - }, - "peerDependencies": { - "@emotion/react": ">=11.9.0", - "@emotion/server": ">=11.4.0", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@mantine/styles": { - "version": "6.0.21", - "resolved": "https://registry.npmjs.org/@mantine/styles/-/styles-6.0.21.tgz", - "integrity": "sha512-PVtL7XHUiD/B5/kZ/QvZOZZQQOj12QcRs3Q6nPoqaoPcOX5+S7bMZLMH0iLtcGq5OODYk0uxlvuJkOZGoPj8Mg==", - "license": "MIT", - "dependencies": { - "clsx": "1.1.1", - "csstype": "3.0.9" - }, - "peerDependencies": { - "@emotion/react": ">=11.9.0", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@mantine/styles/node_modules/csstype": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", - "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==", - "license": "MIT" - }, - "node_modules/@mantine/utils": { - "version": "6.0.21", - "resolved": "https://registry.npmjs.org/@mantine/utils/-/utils-6.0.21.tgz", - "integrity": "sha512-33RVDRop5jiWFao3HKd3Yp7A9mEq4HAJxJPTuYm1NkdqX6aTKOQK7wT8v8itVodBp+sb4cJK6ZVdD1UurK/txQ==", - "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@mongodb-js/saslprep": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.4.tgz", - "integrity": "sha512-8zJ8N1x51xo9hwPh6AWnKdLGEC5N3lDa6kms1YHmFBoRhTpJR6HG8wWk0td1MVCu9cD4YBrvjZEtd5Obw0Fbnw==", - "license": "MIT", - "dependencies": { - "sparse-bitfield": "^3.0.3" - } - }, - "node_modules/@next/env": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/env/-/env-14.1.4.tgz", - "integrity": "sha512-e7X7bbn3Z6DWnDi75UWn+REgAbLEqxI8Tq2pkFOFAMpWAWApz/YCUhtWMWn410h8Q2fYiYL7Yg5OlxMOCfFjJQ==" - }, - "node_modules/@next/eslint-plugin-next": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.0.tgz", - "integrity": "sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "glob": "10.3.10" - } - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.4.tgz", - "integrity": "sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "14.1.4", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.4.tgz", - "integrity": "sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.4.tgz", - "integrity": "sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.4.tgz", - "integrity": "sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.4.tgz", - "integrity": "sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.4.tgz", - "integrity": "sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.4.tgz", - "integrity": "sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.4.tgz", - "integrity": "sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@radix-ui/number": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.0.tgz", - "integrity": "sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - } - }, - "node_modules/@radix-ui/primitive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.0.tgz", - "integrity": "sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - } - }, - "node_modules/@radix-ui/react-compose-refs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz", - "integrity": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-context": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.0.tgz", - "integrity": "sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-direction": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.0.tgz", - "integrity": "sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-presence": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.0.tgz", - "integrity": "sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.0", - "@radix-ui/react-use-layout-effect": "1.0.0" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.1.tgz", - "integrity": "sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-slot": "1.0.1" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-scroll-area": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.2.tgz", - "integrity": "sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/number": "1.0.0", - "@radix-ui/primitive": "1.0.0", - "@radix-ui/react-compose-refs": "1.0.0", - "@radix-ui/react-context": "1.0.0", - "@radix-ui/react-direction": "1.0.0", - "@radix-ui/react-presence": "1.0.0", - "@radix-ui/react-primitive": "1.0.1", - "@radix-ui/react-use-callback-ref": "1.0.0", - "@radix-ui/react-use-layout-effect": "1.0.0" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-slot": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz", - "integrity": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@radix-ui/react-compose-refs": "1.0.0" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-use-callback-ref": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.0.tgz", - "integrity": "sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@radix-ui/react-use-layout-effect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.0.tgz", - "integrity": "sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.13.10" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/@redis/bloom": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz", - "integrity": "sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@redis/client": { - "version": "1.5.14", - "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.5.14.tgz", - "integrity": "sha512-YGn0GqsRBFUQxklhY7v562VMOP0DcmlrHHs3IV1mFE3cbxe31IITUkqhBcIhVSI/2JqtWAJXg5mjV4aU+zD0HA==", - "dependencies": { - "cluster-key-slot": "1.1.2", - "generic-pool": "3.9.0", - "yallist": "4.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@redis/graph": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz", - "integrity": "sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@redis/json": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.6.tgz", - "integrity": "sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@redis/search": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.1.6.tgz", - "integrity": "sha512-mZXCxbTYKBQ3M2lZnEddwEAks0Kc7nauire8q20oA0oA/LoA+E/b5Y5KZn232ztPb1FkIGqo12vh3Lf+Vw5iTw==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@redis/time-series": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.5.tgz", - "integrity": "sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==", - "peerDependencies": { - "@redis/client": "^1.0.0" - } - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz", - "integrity": "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@swc/helpers": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", - "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", - "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", - "license": "MIT", - "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "node_modules/@types/hoist-non-react-statics/node_modules/@types/react": { - "version": "18.2.58", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", - "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/lodash": { - "version": "4.14.202", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz", - "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==", - "license": "MIT" - }, - "node_modules/@types/lodash.mergewith": { - "version": "4.6.7", - "resolved": "https://registry.npmjs.org/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz", - "integrity": "sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==", - "license": "MIT", - "dependencies": { - "@types/lodash": "*" - } - }, - "node_modules/@types/node": { - "version": "20.11.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.17.tgz", - "integrity": "sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw==", - "dev": true, - "license": "MIT", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/p5": { - "version": "1.7.6", - "resolved": "https://registry.npmjs.org/@types/p5/-/p5-1.7.6.tgz", - "integrity": "sha512-6pLTOo0V3N5jZb5nTwjiv3lPHLK3Z/TjbhQUj8CTWXocUk1Z/f6OHTp3Pcwi1BhWnf5gqKUcyEb1gP0KIJuQgw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", - "license": "MIT" - }, - "node_modules/@types/prop-types": { - "version": "15.7.11", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", - "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==", - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "18.2.55", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.55.tgz", - "integrity": "sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA==", - "devOptional": true, - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-beautiful-dnd": { - "version": "13.1.8", - "resolved": "https://registry.npmjs.org/@types/react-beautiful-dnd/-/react-beautiful-dnd-13.1.8.tgz", - "integrity": "sha512-E3TyFsro9pQuK4r8S/OL6G99eq7p8v29sX0PM7oT8Z+PJfZvSQTx4zTQbUJ+QZXioAF0e7TGBEcA1XhYhCweyQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-beautiful-dnd/node_modules/@types/react": { - "version": "18.2.58", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", - "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.2.19", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.19.tgz", - "integrity": "sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-dom/node_modules/@types/react": { - "version": "18.2.58", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", - "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-redux": { - "version": "7.1.33", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz", - "integrity": "sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==", - "license": "MIT", - "dependencies": { - "@types/hoist-non-react-statics": "^3.3.0", - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0", - "redux": "^4.0.0" - } - }, - "node_modules/@types/react-redux/node_modules/@types/react": { - "version": "18.2.58", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.58.tgz", - "integrity": "sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==", - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.8", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", - "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==", - "license": "MIT" - }, - "node_modules/@types/webidl-conversions": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", - "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==", - "license": "MIT" - }, - "node_modules/@types/whatwg-url": { - "version": "11.0.4", - "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.4.tgz", - "integrity": "sha512-lXCmTWSHJvf0TRSO58nm978b8HJ/EdsSsEKLd3ODHFjo+3VGAyyTp4v50nWvwtzBxSMQrVOK7tcuN0zGPLICMw==", - "license": "MIT", - "dependencies": { - "@types/webidl-conversions": "*" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", - "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/scope-manager": "6.21.0", - "@typescript-eslint/types": "6.21.0", - "@typescript-eslint/typescript-estree": "6.21.0", - "@typescript-eslint/visitor-keys": "6.21.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", - "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "6.21.0", - "@typescript-eslint/visitor-keys": "6.21.0" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", - "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", - "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/types": "6.21.0", - "@typescript-eslint/visitor-keys": "6.21.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", - "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "6.21.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/@vygruppen/spor-accordion-react": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vygruppen/spor-accordion-react/-/spor-accordion-react-1.0.1.tgz", - "integrity": "sha512-HakCVEknnh6w24QEp/maU01/m1XP6EZhN5Xq7ITw3EJWBNzfYZ2k4U/NM1+Xm+/NdLpsIMyuHWL8RS2o/PKW2g==", - "license": "MIT", - "peerDependencies": { - "@chakra-ui/react": "^2.3.5", - "@emotion/react": "^11.10.4", - "@emotion/styled": "^11.10.4", - "framer-motion": ">6.0.0", - "react": "^18.2.0", - "react-dom": "^18.2.0" - } - }, - "node_modules/@zag-js/dom-query": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@zag-js/dom-query/-/dom-query-0.16.0.tgz", - "integrity": "sha512-Oqhd6+biWyKnhKwFFuZrrf6lxBz2tX2pRQe6grUnYwO6HJ8BcbqZomy2lpOdr+3itlaUqx+Ywj5E5ZZDr/LBfQ==", - "license": "MIT" - }, - "node_modules/@zag-js/element-size": { - "version": "0.10.5", - "resolved": "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.10.5.tgz", - "integrity": "sha512-uQre5IidULANvVkNOBQ1tfgwTQcGl4hliPSe69Fct1VfYb2Fd0jdAcGzqQgPhfrXFpR62MxLPB7erxJ/ngtL8w==", - "license": "MIT" - }, - "node_modules/@zag-js/focus-visible": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-0.16.0.tgz", - "integrity": "sha512-a7U/HSopvQbrDU4GLerpqiMcHKEkQkNPeDZJWz38cw/6Upunh41GjHetq5TB84hxyCaDzJ6q2nEdNoBQfC0FKA==", - "license": "MIT", - "dependencies": { - "@zag-js/dom-query": "0.16.0" - } - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "license": "BSD-3-Clause" - }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/afinn-165": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/afinn-165/-/afinn-165-1.0.4.tgz", - "integrity": "sha512-7+Wlx3BImrK0HiG6y3lU4xX7SpBPSSu8T9iguPMlaueRFxjbYwAQrp9lqZUuFikqKbd/en8lVREILvP2J80uJA==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/afinn-165-financialmarketnews": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/afinn-165-financialmarketnews/-/afinn-165-financialmarketnews-3.0.0.tgz", - "integrity": "sha512-0g9A1S3ZomFIGDTzZ0t6xmv4AuokBvBmpes8htiyHpH7N4xDmvSQL6UxL/Zcs2ypRb3VwgCscaD8Q3zEawKYhw==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true, - "license": "MIT" - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/apparatus": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/apparatus/-/apparatus-0.0.10.tgz", - "integrity": "sha512-KLy/ugo33KZA7nugtQ7O0E1c8kQ52N3IvD/XgIh4w/Nr28ypfkwDfA67F1ev4N1m5D+BOk1+b2dEJDfpj/VvZg==", - "dependencies": { - "sylvester": ">= 0.0.8" - }, - "engines": { - "node": ">=0.2.6" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true, - "license": "MIT" - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/aria-hidden": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.3.tgz", - "integrity": "sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.filter": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", - "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", - "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", - "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.1.0", - "es-shim-unscopables": "^1.0.2" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", - "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.3" - } - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "license": "MIT" - }, - "node_modules/autoprefixer": { - "version": "10.4.17", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", - "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "browserslist": "^4.22.2", - "caniuse-lite": "^1.0.30001578", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axe-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", - "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", - "dev": true, - "license": "MPL-2.0", - "engines": { - "node": ">=4" - } - }, - "node_modules/axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - }, - "engines": { - "node": ">=10", - "npm": ">=6" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/binary-search": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", - "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==" - }, - "node_modules/blockly": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/blockly/-/blockly-10.4.2.tgz", - "integrity": "sha512-oCJkHZD1HEPYPwnMk/sbmMmhW6UFe+3iH5yvDn3hy3HSVzCOunkw9H1Crb/MmlhhFdvjB5uWgGzQNAa2eWAV6A==", - "license": "Apache-2.0", - "dependencies": { - "jsdom": "22.1.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bson": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/bson/-/bson-6.3.0.tgz", - "integrity": "sha512-balJfqwwTBddxfnidJZagCBPP/f48zj9Sdp3OJswREOgsJzHiQSaOIAtApSgDQFYgHqAvFkp53AFSqjMDZoTFw==", - "license": "Apache-2.0", - "engines": { - "node": ">=16.20.1" - } - }, - "node_modules/buffer-from": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-0.1.2.tgz", - "integrity": "sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==", - "license": "MIT" - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001589", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001589.tgz", - "integrity": "sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/chalk/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT" - }, - "node_modules/chalk/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/classnames": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", - "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", - "license": "MIT" - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", - "license": "MIT" - }, - "node_modules/clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cluster-key-slot": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", - "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/color2k": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.3.tgz", - "integrity": "sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==", - "license": "MIT" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/compute-scroll-into-view": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz", - "integrity": "sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==", - "license": "MIT" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true, - "license": "MIT" - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "license": "MIT" - }, - "node_modules/copy-to-clipboard": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", - "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", - "license": "MIT", - "dependencies": { - "toggle-selection": "^1.0.6" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "license": "MIT" - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "license": "MIT", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cosmiconfig/node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "license": "ISC", - "engines": { - "node": ">= 6" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-box-model": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", - "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", - "license": "MIT", - "dependencies": { - "tiny-invariant": "^1.0.6" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cssstyle": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-3.0.0.tgz", - "integrity": "sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==", - "license": "MIT", - "dependencies": { - "rrweb-cssom": "^0.6.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", - "license": "MIT" - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/data-urls": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-4.0.0.tgz", - "integrity": "sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==", - "license": "MIT", - "dependencies": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^12.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/debug/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "license": "MIT" - }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "license": "MIT" - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", - "license": "MIT" - }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true, - "license": "MIT" - }, - "node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", - "license": "MIT", - "dependencies": { - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dotenv": { - "version": "16.4.5", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://dotenvx.com" - } - }, - "node_modules/duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", - "license": "BSD-3-Clause", - "dependencies": { - "readable-stream": "^2.0.2" - } - }, - "node_modules/duplexer2/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "license": "MIT" - }, - "node_modules/duplexer2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/duplexer2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true, - "license": "MIT" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.681", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.681.tgz", - "integrity": "sha512-1PpuqJUFWoXZ1E54m8bsLPVYwIVCRzvaL+n5cjigGga4z854abDnFRc+cTa2th4S79kyGqya/1xoR7h+Y5G5lg==", - "dev": true, - "license": "ISC" - }, - "node_modules/embla-carousel": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-7.1.0.tgz", - "integrity": "sha512-Bh8Pa8NWzgugLkf8sAGexQlBCNDFaej5BXiKgQdRJ1mUC9NWBrw9Z23YVPVGkguWoz5LMjZXXFVGCobl3UPt/Q==", - "license": "MIT" - }, - "node_modules/embla-carousel-react": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-7.1.0.tgz", - "integrity": "sha512-tbYRPRZSDNd2QLNqYDcArAakGIxtUbhS7tkP0dGXktXHGgcX+3ji3VrOUTOftBiujZrMV8kRxtrRUe/1soloIQ==", - "license": "MIT", - "dependencies": { - "embla-carousel": "7.1.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.1 || ^18.0.0" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.4.tgz", - "integrity": "sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.6", - "call-bind": "^1.0.7", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.2", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.1", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.0", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.1", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true, - "license": "MIT" - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz", - "integrity": "sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.4", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.2", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-next": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.1.0.tgz", - "integrity": "sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@next/eslint-plugin-next": "14.1.0", - "@rushstack/eslint-patch": "^1.3.3", - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.28.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" - }, - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", - "typescript": ">=3.3.1" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-config-prettier": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", - "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", - "dev": true, - "license": "MIT", - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", - "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", - "dev": true, - "license": "ISC", - "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.15.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", - "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.23.2", - "aria-query": "^5.3.0", - "array-includes": "^3.1.7", - "array.prototype.flatmap": "^1.3.2", - "ast-types-flow": "^0.0.8", - "axe-core": "=4.7.0", - "axobject-query": "^3.2.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "es-iterator-helpers": "^1.0.15", - "hasown": "^2.0.0", - "jsx-ast-utils": "^3.3.5", - "language-tags": "^1.0.9", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint-plugin-react": { - "version": "7.33.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", - "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.12", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/exenv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==", - "license": "BSD-3-Clause" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "license": "MIT", - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", - "license": "MIT" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true, - "license": "ISC" - }, - "node_modules/focus-lock": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-1.3.3.tgz", - "integrity": "sha512-hfXkZha7Xt4RQtrL1HBfspAuIj89Y0fb6GX0dfJilb8S2G/lvL4akPAcHq6xoD2NuZnDMCnZL/zQesMyeu6Psg==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, - "node_modules/framer-motion": { - "version": "11.0.6", - "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.0.6.tgz", - "integrity": "sha512-BpO3mWF8UwxzO3Ca5AmSkrg14QYTeJa9vKgoLOoBdBdTPj0e81i1dMwnX6EQJXRieUx20uiDBXq8bA6y7N6b8Q==", - "license": "MIT", - "dependencies": { - "tslib": "^2.4.0" - }, - "optionalDependencies": { - "@emotion/is-prop-valid": "^0.8.2" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } - } - }, - "node_modules/framesync": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz", - "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==", - "license": "MIT", - "dependencies": { - "tslib": "2.4.0" - } - }, - "node_modules/framesync/node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", - "license": "0BSD" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true, - "license": "ISC" - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/generic-pool": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz", - "integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-tsconfig": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", - "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "license": "ISC" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true, - "license": "MIT" - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", - "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "license": "BSD-3-Clause", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/html-dom-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.2.0.tgz", - "integrity": "sha512-2HIpFMvvffsXHFUFjso0M9LqM+1Lm22BF+Df2ba+7QHJXjk63pWChEnI6YG27eaWqUdfnh5/Vy+OXrNTtepRsg==", - "license": "MIT", - "dependencies": { - "domhandler": "4.3.1", - "htmlparser2": "7.2.0" - } - }, - "node_modules/html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "license": "MIT", - "dependencies": { - "whatwg-encoding": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/html-react-parser": { - "version": "1.4.12", - "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.12.tgz", - "integrity": "sha512-nqYQzr4uXh67G9ejAG7djupTHmQvSTgjY83zbXLRfKHJ0F06751jXx6WKSFARDdXxCngo2/7H4Rwtfeowql4gQ==", - "license": "MIT", - "dependencies": { - "domhandler": "4.3.1", - "html-dom-parser": "1.2.0", - "react-property": "2.0.0", - "style-to-js": "1.1.0" - }, - "peerDependencies": { - "react": "0.14 || 15 || 16 || 17 || 18" - } - }, - "node_modules/html-tokenize": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-tokenize/-/html-tokenize-2.0.1.tgz", - "integrity": "sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w==", - "license": "MIT", - "dependencies": { - "buffer-from": "~0.1.1", - "inherits": "~2.0.1", - "minimist": "~1.2.5", - "readable-stream": "~1.0.27-1", - "through2": "~0.4.1" - }, - "bin": { - "html-tokenize": "bin/cmd.js" - } - }, - "node_modules/htmlparser2": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", - "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.2", - "domutils": "^2.8.0", - "entities": "^3.0.1" - } - }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", - "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "license": "MIT", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "license": "ISC" - }, - "node_modules/inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", - "license": "MIT" - }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-any-array": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-any-array/-/is-any-array-2.0.1.tgz", - "integrity": "sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==" - }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "license": "MIT" - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "license": "MIT", - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "license": "MIT" - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dev": true, - "license": "MIT", - "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true, - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" - }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" - } - }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", - "dev": true, - "license": "MIT", - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsdom": { - "version": "22.1.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-22.1.0.tgz", - "integrity": "sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==", - "license": "MIT", - "dependencies": { - "abab": "^2.0.6", - "cssstyle": "^3.0.0", - "data-urls": "^4.0.0", - "decimal.js": "^10.4.3", - "domexception": "^4.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.4", - "parse5": "^7.1.2", - "rrweb-cssom": "^0.6.0", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^12.0.1", - "ws": "^8.13.0", - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "license": "MIT" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/kareem": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz", - "integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==", - "license": "Apache-2.0", - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/language-tags": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", - "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", - "dev": true, - "license": "MIT", - "dependencies": { - "language-subtag-registry": "^0.3.20" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "license": "MIT" - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.mergewith": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", - "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", - "license": "MIT" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "license": "MIT", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", - "dev": true, - "license": "ISC", - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/memjs": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/memjs/-/memjs-1.3.2.tgz", - "integrity": "sha512-qUEg2g8vxPe+zPn09KidjIStHPtoBO8Cttm8bgJFWWabbsjQ9Av9Ky+6UcvKx6ue0LLb/LEhtcyQpRyKfzeXcg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/memoize-one": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", - "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", - "license": "MIT" - }, - "node_modules/memory-pager": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", - "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "license": "MIT", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/ml-array-mean": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/ml-array-mean/-/ml-array-mean-1.1.6.tgz", - "integrity": "sha512-MIdf7Zc8HznwIisyiJGRH9tRigg3Yf4FldW8DxKxpCCv/g5CafTw0RRu51nojVEOXuCQC7DRVVu5c7XXO/5joQ==", - "dependencies": { - "ml-array-sum": "^1.1.6" - } - }, - "node_modules/ml-array-sum": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/ml-array-sum/-/ml-array-sum-1.1.6.tgz", - "integrity": "sha512-29mAh2GwH7ZmiRnup4UyibQZB9+ZLyMShvt4cH4eTK+cL2oEMIZFnSyB3SS8MlsTh6q/w/yh48KmqLxmovN4Dw==", - "dependencies": { - "is-any-array": "^2.0.0" - } - }, - "node_modules/ml-distance": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/ml-distance/-/ml-distance-4.0.1.tgz", - "integrity": "sha512-feZ5ziXs01zhyFUUUeZV5hwc0f5JW0Sh0ckU1koZe/wdVkJdGxcP06KNQuF0WBTj8FttQUzcvQcpcrOp/XrlEw==", - "dependencies": { - "ml-array-mean": "^1.1.6", - "ml-distance-euclidean": "^2.0.0", - "ml-tree-similarity": "^1.0.0" - } - }, - "node_modules/ml-distance-euclidean": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ml-distance-euclidean/-/ml-distance-euclidean-2.0.0.tgz", - "integrity": "sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q==" - }, - "node_modules/ml-tree-similarity": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ml-tree-similarity/-/ml-tree-similarity-1.0.0.tgz", - "integrity": "sha512-XJUyYqjSuUQkNQHMscr6tcjldsOoAekxADTplt40QKfwW6nd++1wHWV9AArl0Zvw/TIHgNaZZNvr8QGvE8wLRg==", - "dependencies": { - "binary-search": "^1.3.5", - "num-sort": "^2.0.0" - } - }, - "node_modules/mongo": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/mongo/-/mongo-0.1.0.tgz", - "integrity": "sha512-2MPq+GCNKhah0V/g/HIQI/S1h6Ycd87KPuXAITkeXWT6wncvABFxOaXdzCKlRvLSQRUkDimllrRrhoHUTD8usg==", - "dependencies": { - "mongodb": "*" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/mongodb": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.3.0.tgz", - "integrity": "sha512-tt0KuGjGtLUhLoU263+xvQmPHEGTw5LbcNC73EoFRYgSHwZt5tsoJC110hDyO1kjQzpgNrpdcSza9PknWN4LrA==", - "license": "Apache-2.0", - "dependencies": { - "@mongodb-js/saslprep": "^1.1.0", - "bson": "^6.2.0", - "mongodb-connection-string-url": "^3.0.0" - }, - "engines": { - "node": ">=16.20.1" - }, - "peerDependencies": { - "@aws-sdk/credential-providers": "^3.188.0", - "@mongodb-js/zstd": "^1.1.0", - "gcp-metadata": "^5.2.0", - "kerberos": "^2.0.1", - "mongodb-client-encryption": ">=6.0.0 <7", - "snappy": "^7.2.2", - "socks": "^2.7.1" - }, - "peerDependenciesMeta": { - "@aws-sdk/credential-providers": { - "optional": true - }, - "@mongodb-js/zstd": { - "optional": true - }, - "gcp-metadata": { - "optional": true - }, - "kerberos": { - "optional": true - }, - "mongodb-client-encryption": { - "optional": true - }, - "snappy": { - "optional": true - }, - "socks": { - "optional": true - } - } - }, - "node_modules/mongodb-connection-string-url": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.0.tgz", - "integrity": "sha512-t1Vf+m1I5hC2M5RJx/7AtxgABy1cZmIPQRMXw+gEIPn/cZNF3Oiy+l0UIypUwVB5trcWHq3crg2g3uAR9aAwsQ==", - "license": "Apache-2.0", - "dependencies": { - "@types/whatwg-url": "^11.0.2", - "whatwg-url": "^13.0.0" - } - }, - "node_modules/mongodb-connection-string-url/node_modules/whatwg-url": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", - "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", - "license": "MIT", - "dependencies": { - "tr46": "^4.1.1", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/mongoose": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.2.0.tgz", - "integrity": "sha512-la93n6zCYRbPS+c5N9oTDAktvREy5OT9OCljp1Tah0y3+p8UPMTAoabWaLZMdzYruOtF9/9GRf6MasaZjiZP1A==", - "license": "MIT", - "dependencies": { - "bson": "^6.2.0", - "kareem": "2.5.1", - "mongodb": "6.3.0", - "mpath": "0.9.0", - "mquery": "5.0.0", - "ms": "2.1.3", - "sift": "16.0.1" - }, - "engines": { - "node": ">=16.20.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mongoose" - } - }, - "node_modules/mpath": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", - "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/mquery": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", - "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", - "license": "MIT", - "dependencies": { - "debug": "4.x" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "node_modules/multipipe": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-1.0.2.tgz", - "integrity": "sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ==", - "license": "MIT", - "dependencies": { - "duplexer2": "^0.1.2", - "object-assign": "^4.1.0" - } - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/natural/-/natural-6.12.0.tgz", - "integrity": "sha512-ZV/cuaxOvJ7CSxQRYHc6nlx7ql6hVPQc20N5ubdqVbotWnnqsNc+0/QG+ACIC3XPQ4rfrQrdC/1k47v1cSszTQ==", - "dependencies": { - "afinn-165": "^1.0.2", - "afinn-165-financialmarketnews": "^3.0.0", - "apparatus": "^0.0.10", - "dotenv": "^16.4.5", - "memjs": "^1.3.2", - "mongoose": "^8.2.0", - "pg": "^8.11.3", - "redis": "^4.6.13", - "safe-stable-stringify": "^2.2.0", - "stopwords-iso": "^1.1.0", - "sylvester": "^0.0.12", - "underscore": "^1.9.1", - "uuid": "^9.0.1", - "wordnet-db": "^3.1.11" - }, - "engines": { - "node": ">=0.4.10" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" - }, - "node_modules/next": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/next/-/next-14.1.4.tgz", - "integrity": "sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==", - "dependencies": { - "@next/env": "14.1.4", - "@swc/helpers": "0.5.2", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001579", - "graceful-fs": "^4.2.11", - "postcss": "8.4.31", - "styled-jsx": "5.1.1" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=18.17.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "14.1.4", - "@next/swc-darwin-x64": "14.1.4", - "@next/swc-linux-arm64-gnu": "14.1.4", - "@next/swc-linux-arm64-musl": "14.1.4", - "@next/swc-linux-x64-gnu": "14.1.4", - "@next/swc-linux-x64-musl": "14.1.4", - "@next/swc-win32-arm64-msvc": "14.1.4", - "@next/swc-win32-ia32-msvc": "14.1.4", - "@next/swc-win32-x64-msvc": "14.1.4" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "sass": "^1.3.0" - }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/next/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true, - "license": "MIT" - }, - "node_modules/node-tfidf": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/node-tfidf/-/node-tfidf-0.0.2.tgz", - "integrity": "sha512-y80oOzzNQKQCulteh1YS7Qz6ggEfdsZHhemWhAuCCXzagIeYBHJw/U4V0YidRfYm/97PHBqS2zkBlGHDclBnSw==", - "dependencies": { - "node-vntokenizer": "0.0.1", - "underscore": "^1.8.3", - "vietnamese-stopwords": "0.0.2" - } - }, - "node_modules/node-vntokenizer": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/node-vntokenizer/-/node-vntokenizer-0.0.1.tgz", - "integrity": "sha512-0eabk8RaKk0DfMozNJOdbJzcB34KWqet7FgCBVdvuVHcaFiQ//XPX2s2CntMjbbc5CMtgTKuWSm2uxyyj3AXWg==", - "dependencies": { - "lodash": "^3.10.1", - "underscore": "^1.8.3" - } - }, - "node_modules/node-vntokenizer/node_modules/lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha512-9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ==" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/num-sort": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/num-sort/-/num-sort-2.1.0.tgz", - "integrity": "sha512-1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nwsapi": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", - "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", - "license": "MIT" - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", - "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", - "dev": true, - "license": "MIT", - "dependencies": { - "array.prototype.filter": "^1.0.3", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.0.0" - } - }, - "node_modules/object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p5": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/p5/-/p5-1.9.0.tgz", - "integrity": "sha512-+5/hz0ZokCDf7BMMAeemE7FIo7gFZK7ImL62acHLXZwerGjqj+171bnaAWj4aCFCx6fwysAr2U7/AKuPyPhehA==", - "license": "LGPL-2.1" - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "license": "MIT", - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "license": "MIT" - }, - "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", - "dev": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/pg": { - "version": "8.11.5", - "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", - "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", - "dependencies": { - "pg-connection-string": "^2.6.4", - "pg-pool": "^3.6.2", - "pg-protocol": "^1.6.1", - "pg-types": "^2.1.0", - "pgpass": "1.x" - }, - "engines": { - "node": ">= 8.0.0" - }, - "optionalDependencies": { - "pg-cloudflare": "^1.1.1" - }, - "peerDependencies": { - "pg-native": ">=3.0.1" - }, - "peerDependenciesMeta": { - "pg-native": { - "optional": true - } - } - }, - "node_modules/pg-cloudflare": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", - "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", - "optional": true - }, - "node_modules/pg-connection-string": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", - "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" - }, - "node_modules/pg-int8": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", - "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/pg-pool": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", - "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", - "peerDependencies": { - "pg": ">=8.0" - } - }, - "node_modules/pg-protocol": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", - "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" - }, - "node_modules/pg-types": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", - "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", - "dependencies": { - "pg-int8": "1.0.1", - "postgres-array": "~2.0.0", - "postgres-bytea": "~1.0.0", - "postgres-date": "~1.0.4", - "postgres-interval": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pgpass": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", - "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", - "dependencies": { - "split2": "^4.1.0" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/postcss": { - "version": "8.4.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", - "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", - "dev": true, - "license": "MIT", - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "dev": true, - "license": "MIT", - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/postcss-load-config": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", - "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "lilconfig": "^3.0.0", - "yaml": "^2.3.4" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-load-config/node_modules/lilconfig": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", - "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.15", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", - "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", - "dev": true, - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/postgres-array": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", - "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/postgres-bytea": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postgres-date": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", - "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postgres-interval": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", - "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", - "dependencies": { - "xtend": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postgres-interval/node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", - "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", - "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "license": "MIT" - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "license": "MIT" - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "license": "MIT" - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/raf-schd": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz", - "integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==", - "license": "MIT" - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-beautiful-dnd": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz", - "integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==", - "license": "Apache-2.0", - "dependencies": { - "@babel/runtime": "^7.9.2", - "css-box-model": "^1.2.0", - "memoize-one": "^5.1.1", - "raf-schd": "^4.0.2", - "react-redux": "^7.2.0", - "redux": "^4.0.4", - "use-memo-one": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.5 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-blockly": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/react-blockly/-/react-blockly-8.1.1.tgz", - "integrity": "sha512-MOT9c/1D3ItO7vwUAlWvgDEJT7alNkR5MCgwE160EK2hFka4DRPHOUXBGnxRod8OVY+hdvMUnmiHUVTrYODwXQ==", - "license": "MIT", - "dependencies": { - "blockly": ">= 10.0.0", - "prop-types": "^15.8.1" - }, - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0" - } - }, - "node_modules/react-clientside-effect": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/react-clientside-effect/-/react-clientside-effect-1.2.6.tgz", - "integrity": "sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.13" - }, - "peerDependencies": { - "react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-fast-compare": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", - "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==", - "license": "MIT" - }, - "node_modules/react-focus-lock": { - "version": "2.11.1", - "resolved": "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-2.11.1.tgz", - "integrity": "sha512-IXLwnTBrLTlKTpASZXqqXJ8oymWrgAlOfuuDYN4XCuN1YJ72dwX198UCaF1QqGUk5C3QOnlMik//n3ufcfe8Ig==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.0.0", - "focus-lock": "^1.3.2", - "prop-types": "^15.6.2", - "react-clientside-effect": "^1.2.6", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "license": "MIT" - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==", - "license": "MIT" - }, - "node_modules/react-modal": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz", - "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==", - "license": "MIT", - "dependencies": { - "exenv": "^1.2.0", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.0", - "warning": "^4.0.3" - }, - "engines": { - "node": ">=8" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", - "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" - } - }, - "node_modules/react-popper": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "license": "MIT", - "dependencies": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" - }, - "peerDependencies": { - "@popperjs/core": "^2.0.0", - "react": "^16.8.0 || ^17 || ^18", - "react-dom": "^16.8.0 || ^17 || ^18" - } - }, - "node_modules/react-property": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz", - "integrity": "sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==", - "license": "MIT" - }, - "node_modules/react-redux": { - "version": "7.2.9", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", - "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "peerDependencies": { - "react": "^16.8.3 || ^17 || ^18" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/react-redux/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "license": "MIT" - }, - "node_modules/react-remove-scroll": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz", - "integrity": "sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==", - "license": "MIT", - "dependencies": { - "react-remove-scroll-bar": "^2.3.4", - "react-style-singleton": "^2.2.1", - "tslib": "^2.1.0", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-remove-scroll-bar": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.5.tgz", - "integrity": "sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw==", - "license": "MIT", - "dependencies": { - "react-style-singleton": "^2.2.1", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-sortable-hoc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz", - "integrity": "sha512-JZUw7hBsAHXK7PTyErJyI7SopSBFRcFHDjWW5SWjcugY0i6iH7f+eJkY8cJmGMlZ1C9xz1J3Vjz0plFpavVeRg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.2.0", - "invariant": "^2.2.4", - "prop-types": "^15.5.7" - }, - "peerDependencies": { - "prop-types": "^15.5.7", - "react": "^16.3.0 || ^17.0.0", - "react-dom": "^16.3.0 || ^17.0.0" - } - }, - "node_modules/react-style-singleton": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", - "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", - "license": "MIT", - "dependencies": { - "get-nonce": "^1.0.0", - "invariant": "^2.2.4", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-textarea-autosize": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.4.tgz", - "integrity": "sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.10.2", - "use-composed-ref": "^1.3.0", - "use-latest": "^1.2.1" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "license": "BSD-3-Clause", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/reactstrap": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-9.2.2.tgz", - "integrity": "sha512-4KroiGOdqZLAnMGzHjpErW3G7bLB+QbKzzMLIDXydPIV0y74lpdL7WtXHkLWAGInd97WCPNx4+R0NQDPyzIfhw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "@popperjs/core": "^2.6.0", - "classnames": "^2.2.3", - "prop-types": "^15.5.8", - "react-popper": "^2.2.4", - "react-transition-group": "^4.4.2" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/readable-stream/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "license": "MIT" - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/redis": { - "version": "4.6.13", - "resolved": "https://registry.npmjs.org/redis/-/redis-4.6.13.tgz", - "integrity": "sha512-MHgkS4B+sPjCXpf+HfdetBwbRz6vCtsceTmw1pHNYJAsYxrfpOP6dz+piJWGos8wqG7qb3vj/Rrc5qOlmInUuA==", - "dependencies": { - "@redis/bloom": "1.2.0", - "@redis/client": "1.5.14", - "@redis/graph": "1.1.1", - "@redis/json": "1.0.6", - "@redis/search": "1.1.6", - "@redis/time-series": "1.0.5" - } - }, - "node_modules/redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", - "integrity": "sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.0.0", - "get-intrinsic": "^1.2.3", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "license": "MIT" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "license": "MIT" - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rrweb-cssom": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz", - "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==", - "license": "MIT" - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", - "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "get-intrinsic": "^1.2.2", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "license": "MIT" - }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "engines": { - "node": ">=10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "license": "MIT" - }, - "node_modules/saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", - "license": "ISC", - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=v12.22.7" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/set-function-length": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", - "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.2", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", - "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/sift": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz", - "integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==", - "license": "MIT" - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sparse-bitfield": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", - "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", - "license": "MIT", - "dependencies": { - "memory-pager": "^1.0.2" - } - }, - "node_modules/split2": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - "engines": { - "node": ">= 10.x" - } - }, - "node_modules/stopwords-iso": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/stopwords-iso/-/stopwords-iso-1.1.0.tgz", - "integrity": "sha512-I6GPS/E0zyieHehMRPQcqkiBMJKGgLta+1hREixhoLPqEA0AlVFiC43dl8uPpmkkeRdDMzYRWFWk5/l9x7nmNg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "license": "MIT" - }, - "node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/string-width/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, - "license": "MIT" - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", - "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "set-function-name": "^2.0.0", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/style-to-js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.0.tgz", - "integrity": "sha512-1OqefPDxGrlMwcbfpsTVRyzwdhr4W0uxYQzeA2F1CBc8WG04udg2+ybRnvh3XYL4TdHQrCahLtax2jc8xaE6rA==", - "license": "MIT", - "dependencies": { - "style-to-object": "0.3.0" - } - }, - "node_modules/style-to-object": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", - "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", - "license": "MIT", - "dependencies": { - "inline-style-parser": "0.1.1" - } - }, - "node_modules/styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "license": "MIT", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/stylis": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==", - "license": "MIT" - }, - "node_modules/sucrase": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", - "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.2", - "commander": "^4.0.0", - "glob": "^10.3.10", - "lines-and-columns": "^1.1.6", - "mz": "^2.7.0", - "pirates": "^4.0.1", - "ts-interface-checker": "^0.1.9" - }, - "bin": { - "sucrase": "bin/sucrase", - "sucrase-node": "bin/sucrase-node" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/sylvester": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/sylvester/-/sylvester-0.0.12.tgz", - "integrity": "sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw==", - "engines": { - "node": ">=0.2.6" - } - }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "license": "MIT" - }, - "node_modules/tabbable": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", - "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", - "license": "MIT" - }, - "node_modules/tailwindcss": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", - "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.3.0", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "jiti": "^1.19.1", - "lilconfig": "^2.1.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.23", - "postcss-import": "^15.1.0", - "postcss-js": "^4.0.1", - "postcss-load-config": "^4.0.1", - "postcss-nested": "^6.0.1", - "postcss-selector-parser": "^6.0.11", - "resolve": "^1.22.2", - "sucrase": "^3.32.0" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/tailwindcss/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true, - "license": "MIT" - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "license": "MIT", - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "license": "MIT" - }, - "node_modules/through2": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz", - "integrity": "sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ==", - "license": "MIT", - "dependencies": { - "readable-stream": "~1.0.17", - "xtend": "~2.1.1" - } - }, - "node_modules/tiny-invariant": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", - "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", - "license": "MIT" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==", - "license": "MIT" - }, - "node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", - "license": "BSD-3-Clause", - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tr46": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", - "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", - "license": "MIT", - "dependencies": { - "punycode": "^2.3.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/ts-api-utils": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz", - "integrity": "sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } - }, - "node_modules/ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/tsconfig-paths": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", - "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "license": "0BSD" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.5.tgz", - "integrity": "sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typescript": { - "version": "5.4.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", - "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/underscore": { - "version": "1.13.6", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", - "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true, - "license": "MIT" - }, - "node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "license": "MIT", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "license": "MIT", - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "node_modules/use-callback-ref": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.1.tgz", - "integrity": "sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-composed-ref": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz", - "integrity": "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==", - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/use-isomorphic-layout-effect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", - "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-latest": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz", - "integrity": "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==", - "license": "MIT", - "dependencies": { - "use-isomorphic-layout-effect": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-memo-one": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz", - "integrity": "sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==", - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/use-sidecar": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", - "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", - "license": "MIT", - "dependencies": { - "detect-node-es": "^1.1.0", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "license": "MIT" - }, - "node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/vietnamese-stopwords": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/vietnamese-stopwords/-/vietnamese-stopwords-0.0.2.tgz", - "integrity": "sha512-4kbrxAi+sRTWKR0bsn0xLTBhSPYwN3QEaLAfdTymHNjz+mD8NBIWtTdKJjV+YvLsrlWxY+8FuS17nPSMAZa2vg==" - }, - "node_modules/w3c-xmlserializer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", - "license": "MIT", - "dependencies": { - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", - "license": "MIT", - "dependencies": { - "iconv-lite": "0.6.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-url": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-12.0.1.tgz", - "integrity": "sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==", - "license": "MIT", - "dependencies": { - "tr46": "^4.1.1", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", - "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", - "dev": true, - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.6", - "call-bind": "^1.0.5", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wordnet-db": { - "version": "3.1.14", - "resolved": "https://registry.npmjs.org/wordnet-db/-/wordnet-db-3.1.14.tgz", - "integrity": "sha512-zVyFsvE+mq9MCmwXUWHIcpfbrHHClZWZiVOzKSxNJruIcFn2RbY55zkhiAMMxM8zCVSmtNiViq8FsAZSFpMYag==", - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "license": "Apache-2.0", - "engines": { - "node": ">=12" - } - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "license": "MIT" - }, - "node_modules/xtend": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", - "integrity": "sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==", - "dependencies": { - "object-keys": "~0.4.0" - }, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/xtend/node_modules/object-keys": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", - "integrity": "sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==", - "license": "MIT" - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "license": "ISC" - }, - "node_modules/yaml": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.0.tgz", - "integrity": "sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ==", - "dev": true, - "license": "ISC", - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} diff --git a/pages/response.tsx b/pages/response.tsx index 9a8ccdd..32ad39f 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -29,16 +29,11 @@ const Response: NextPage = ({ title, rcModelTabs, id, + issueLib }) => { const [tabs, setTabs] = useState(rcModelTabs); const [notes, setNotes] = useState(Notes); const [insight, setInsight] = useState(insightNotes); - // const defaultHypothesis = { - // title: 'First Hunch', - // content: 'fill in your first hunch here!', - // }; - // if hypothesisList is filled in DB, return it. If not, use defaultHypothesis - // const [hypos, setHypos] = useState(hypothesisList || [defaultHypothesis]); const updateResponse = async () => { try { @@ -94,7 +89,7 @@ const Response: NextPage = ({
        - +
        @@ -112,6 +107,19 @@ const Response: NextPage = ({ export default React.memo(Response); +async function getIssuesFromDatabase() { + try { + const issues = await connectMongo({ find: "RCLibrary" }); + return issues.map(issue => ({ + title: issue.issue_title, + description: issue.description + })); + } catch (error) { + console.error("Error fetching issues from database:", error); + return []; + } +} + export const getServerSideProps: GetServerSideProps = async (context) => { let response_id = context.query?.response; @@ -121,6 +129,8 @@ export const getServerSideProps: GetServerSideProps = async (context) => { }); data = data[0]; + const issues = await getIssuesFromDatabase(); + let rcModelTabs = data['rcModelTabs']; // for (let i = 0; i < rcModelTabs.length; i++){ // let RCModel = rcModelTabs[i].rcs @@ -159,6 +169,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => { title: title, rcModelTabs: rcModelTabs, id: data._id.toString(), + issueLib: issues }, }; }; From 5f2f7270d28caa5c369bc4899d725ff8781a2f1e Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 9 Apr 2024 21:20:44 -0500 Subject: [PATCH 090/111] omit low TFIDF similarities --- lib/TFIDF.js | 12 ++++++++++-- pages/response.tsx | 1 - 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/TFIDF.js b/lib/TFIDF.js index e84b8c9..52dc15c 100644 --- a/lib/TFIDF.js +++ b/lib/TFIDF.js @@ -57,11 +57,19 @@ function getTopSimilarIssues(issues, mentorNote, topN = 3) { .map(pair => pair[0]) .value(); - const topSimilarIssues = topIndices.map(index => { + // Filter out issues with similarity score <= 0.001 + const filteredTopIndices = topIndices.filter(index => similarities[index] > 0.001); + + const topSimilarIssues = filteredTopIndices.map(index => { return { title: issues[index].title, similarity: similarities[index] }; }); - return topSimilarIssues; + // If there are fewer similar issues than topN, return all of them + if (topSimilarIssues.length < topN) { + return topSimilarIssues; + } + + return topSimilarIssues.length > 0 ? topSimilarIssues : []; } module.exports = { getTopSimilarIssues }; diff --git a/pages/response.tsx b/pages/response.tsx index 32ad39f..4e2fffa 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -78,7 +78,6 @@ const Response: NextPage = ({ // Watch out for changes in state variables in [], and execute the function inside useEffect(() => { - console.log('NEW TABS ', tabs); updateResponse(); }, [notes, insight, tabs]); From b99383c1ad981063f46fafd2255cbfdf5639eaea Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 9 Apr 2024 22:13:52 -0500 Subject: [PATCH 091/111] add stemming --- components/diagnosis/Search.module.css | 0 components/diagnosis/Search.tsx | 10 +++++++ .../diagnosis/SuggestedIssues.module.css | 13 +++++++++ components/diagnosis/SuggestedIssues.tsx | 28 ++++++++++++------- lib/TFIDF.js | 16 ++++++++++- 5 files changed, 56 insertions(+), 11 deletions(-) create mode 100644 components/diagnosis/Search.module.css create mode 100644 components/diagnosis/Search.tsx diff --git a/components/diagnosis/Search.module.css b/components/diagnosis/Search.module.css new file mode 100644 index 0000000..e69de29 diff --git a/components/diagnosis/Search.tsx b/components/diagnosis/Search.tsx new file mode 100644 index 0000000..0f3ef30 --- /dev/null +++ b/components/diagnosis/Search.tsx @@ -0,0 +1,10 @@ +import React, { useState, useEffect } from 'react'; +import styles from './Search.module.css'; + +const Search: React.FC = ({}) => { + return ( +

        HEYYY

        + ) +} + +export default Search; \ No newline at end of file diff --git a/components/diagnosis/SuggestedIssues.module.css b/components/diagnosis/SuggestedIssues.module.css index 08b04ed..be25fec 100644 --- a/components/diagnosis/SuggestedIssues.module.css +++ b/components/diagnosis/SuggestedIssues.module.css @@ -23,3 +23,16 @@ font-weight: bold; margin-bottom: 0.5rem; } + +.container{ + display: flex; +} + +.leftColumn { + flex: 1; + margin-right: 20px; +} + +.rightColumn { + flex: 1; +} \ No newline at end of file diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index 73b1edf..7e30762 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -1,6 +1,7 @@ import React, { useState, useEffect } from 'react'; import styles from './SuggestedIssues.module.css'; import { getTopSimilarIssues } from '../../lib/TFIDF.js'; +import Search from './Search'; // interface Props { // insight: string; @@ -8,7 +9,7 @@ import { getTopSimilarIssues } from '../../lib/TFIDF.js'; // } const SuggestedIssues: React.FC = ({insight, setTabs, issueLib}) => { const [result, setResult] = useState([]); - + useEffect(() => { const fetchSimilarIssues = async () => { if (insight){ @@ -35,15 +36,22 @@ const SuggestedIssues: React.FC = ({insight, setTabs, issueLib}) => { return (
        -

        TF-IDF Suggested Issues

        -
        - {result.map((issue, index) => ( -
        -

        {issue.title}

        -

        Similarity: {issue.similarity}

        - -
        - ))} +
        +
        +

        TF-IDF Suggested Issues

        +
        + {result.map((issue, index) => ( +
        +

        {issue.title}

        +

        Similarity: {issue.similarity}

        + +
        + ))} +
        +
        +
        + +
        ); diff --git a/lib/TFIDF.js b/lib/TFIDF.js index 52dc15c..577fbcd 100644 --- a/lib/TFIDF.js +++ b/lib/TFIDF.js @@ -3,7 +3,21 @@ const _ = require('lodash'); const { ENGLISH_STOP_WORDS } = require('./stopWords.js') function preprocess(text) { - return text.toLowerCase(); + // Convert text to lowercase + text = text.toLowerCase(); + + // Tokenize text + const tokenizer = new natural.WordTokenizer(); + const tokens = tokenizer.tokenize(text); + + // Apply Porter stemming to each token + const stemmedTokens = tokens.map(token => natural.PorterStemmer.stem(token)); + + // Remove stop words + const filteredTokens = stemmedTokens.filter(token => !ENGLISH_STOP_WORDS.includes(token)); + + // Join tokens back into a single string + return filteredTokens.join(' '); } function cosineSimilarity(vectorA, vectorB) { From 9ff07e35a90fe5320b03b839b50fb38eb962ad1b Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 9 Apr 2024 22:40:39 -0500 Subject: [PATCH 092/111] upgrade set of stopwords used --- lib/TFIDF.js | 6 +- lib/stopWords.js | 985 ++++++++++++++++++++++++++++++++++++++++++++++- lib/stopWords.ts | 325 ---------------- 3 files changed, 983 insertions(+), 333 deletions(-) delete mode 100644 lib/stopWords.ts diff --git a/lib/TFIDF.js b/lib/TFIDF.js index 577fbcd..67d9cec 100644 --- a/lib/TFIDF.js +++ b/lib/TFIDF.js @@ -50,9 +50,9 @@ function getTopSimilarIssues(issues, mentorNote, topN = 3) { return _.sortBy(vector, 'term'); }); - // // Print TF-IDF vector for mentor notes - // console.log("TF-IDF Matrix note:"); - // console.table(tfidfMatrix[0]); + // Print TF-IDF vector for mentor notes + console.log("TF-IDF Matrix note:"); + console.table(tfidfMatrix[0]); // Compute cosine similarity between mentor's note and issue descriptions const mentorVector = tfidfMatrix[0].map(term => term.tfidf); diff --git a/lib/stopWords.js b/lib/stopWords.js index 9f5c53a..c381d14 100644 --- a/lib/stopWords.js +++ b/lib/stopWords.js @@ -1,42 +1,121 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.ENGLISH_STOP_WORDS = void 0; exports.ENGLISH_STOP_WORDS = [ + "'ll", + "'tis", + "'twas", + "'ve", + "10", + "39", "a", + "a's", + "able", + "ableabout", "about", "above", + "abroad", + "abst", + "accordance", + "according", + "accordingly", "across", + "act", + "actually", + "ad", + "added", + "adj", + "adopted", + "ae", + "af", + "affected", + "affecting", + "affects", "after", "afterwards", + "ag", "again", "against", + "ago", + "ah", + "ahead", + "ai", + "ain't", + "aint", + "al", "all", + "allow", + "allows", "almost", "alone", "along", + "alongside", "already", "also", "although", "always", "am", + "amid", + "amidst", "among", "amongst", "amoungst", "amount", "an", "and", + "announce", "another", "any", + "anybody", "anyhow", + "anymore", "anyone", "anything", "anyway", + "anyways", "anywhere", + "ao", + "apart", + "apparently", + "appear", + "appreciate", + "appropriate", + "approximately", + "aq", + "ar", "are", + "area", + "areas", + "aren", + "aren't", + "arent", + "arise", "around", + "arpa", "as", + "aside", + "ask", + "asked", + "asking", + "asks", + "associated", "at", + "au", + "auth", + "available", + "aw", + "away", + "awfully", + "az", + "b", + "ba", "back", + "backed", + "backing", + "backs", + "backward", + "backwards", + "bb", + "bd", "be", "became", "because", @@ -46,282 +125,1178 @@ exports.ENGLISH_STOP_WORDS = [ "been", "before", "beforehand", + "began", + "begin", + "beginning", + "beginnings", + "begins", "behind", "being", + "beings", + "believe", "below", "beside", "besides", + "best", + "better", "between", "beyond", + "bf", + "bg", + "bh", + "bi", + "big", "bill", + "billion", + "biol", + "bj", + "bm", + "bn", + "bo", "both", "bottom", + "br", + "brief", + "briefly", + "bs", + "bt", "but", + "buy", + "bv", + "bw", "by", + "bz", + "c", + "c'mon", + "c's", + "ca", "call", + "came", "can", + "can't", "cannot", "cant", + "caption", + "case", + "cases", + "cause", + "causes", + "cc", + "cd", + "certain", + "certainly", + "cf", + "cg", + "ch", + "changes", + "ci", + "ck", + "cl", + "clear", + "clearly", + "click", + "cm", + "cmon", + "cn", "co", + "co.", + "com", + "come", + "comes", + "computer", "con", + "concerning", + "consequently", + "consider", + "considering", + "contain", + "containing", + "contains", + "copy", + "corresponding", "could", + "could've", + "couldn", + "couldn't", "couldnt", + "course", + "cr", "cry", + "cs", + "cu", + "currently", + "cv", + "cx", + "cy", + "cz", + "d", + "dare", + "daren't", + "darent", + "date", "de", + "dear", + "definitely", "describe", + "described", + "despite", "detail", + "did", + "didn", + "didn't", + "didnt", + "differ", + "different", + "differently", + "directly", + "dj", + "dk", + "dm", "do", + "does", + "doesn", + "doesn't", + "doesnt", + "doing", + "don", + "don't", "done", + "dont", + "doubtful", "down", + "downed", + "downing", + "downs", + "downwards", "due", "during", + "dz", + "e", "each", + "early", + "ec", + "ed", + "edu", + "ee", + "effect", "eg", + "eh", "eight", + "eighty", "either", "eleven", "else", "elsewhere", "empty", + "end", + "ended", + "ending", + "ends", "enough", + "entirely", + "er", + "es", + "especially", + "et", + "et-al", "etc", "even", + "evenly", "ever", + "evermore", "every", + "everybody", "everyone", "everything", "everywhere", + "ex", + "exactly", + "example", "except", + "f", + "face", + "faces", + "fact", + "facts", + "fairly", + "far", + "farther", + "felt", "few", + "fewer", + "ff", + "fi", "fifteen", + "fifth", "fifty", + "fify", "fill", "find", + "finds", "fire", "first", "five", + "fix", + "fj", + "fk", + "fm", + "fo", + "followed", + "following", + "follows", "for", + "forever", "former", "formerly", + "forth", "forty", + "forward", "found", "four", + "fr", + "free", "from", "front", "full", + "fully", "further", + "furthered", + "furthering", + "furthermore", + "furthers", + "fx", + "g", + "ga", + "gave", + "gb", + "gd", + "ge", + "general", + "generally", "get", + "gets", + "getting", + "gf", + "gg", + "gh", + "gi", "give", + "given", + "gives", + "giving", + "gl", + "gm", + "gmt", + "gn", "go", + "goes", + "going", + "gone", + "good", + "goods", + "got", + "gotten", + "gov", + "gp", + "gq", + "gr", + "great", + "greater", + "greatest", + "greetings", + "group", + "grouped", + "grouping", + "groups", + "gs", + "gt", + "gu", + "gw", + "gy", + "h", "had", + "hadn't", + "hadnt", + "half", + "happens", + "hardly", "has", + "hasn", + "hasn't", "hasnt", "have", + "haven", + "haven't", + "havent", + "having", "he", + "he'd", + "he'll", + "he's", + "hed", + "hell", + "hello", + "help", "hence", "her", "here", + "here's", "hereafter", "hereby", "herein", + "heres", "hereupon", "hers", "herself", + "herse”", + "hes", + "hi", + "hid", + "high", + "higher", + "highest", "him", "himself", + "himse”", "his", + "hither", + "hk", + "hm", + "hn", + "home", + "homepage", + "hopefully", "how", + "how'd", + "how'll", + "how's", + "howbeit", "however", + "hr", + "ht", + "htm", + "html", + "http", + "hu", "hundred", "i", + "i'd", + "i'll", + "i'm", + "i've", + "i.e.", + "id", "ie", "if", + "ignored", + "ii", + "il", + "ill", + "im", + "immediate", + "immediately", + "importance", + "important", "in", + "inasmuch", "inc", + "inc.", "indeed", + "index", + "indicate", + "indicated", + "indicates", + "information", + "inner", + "inside", + "insofar", + "instead", + "int", "interest", + "interested", + "interesting", + "interests", "into", + "invention", + "inward", + "io", + "iq", + "ir", "is", + "isn", + "isn't", + "isnt", "it", + "it'd", + "it'll", + "it's", + "itd", + "itll", "its", "itself", + "itse”", + "ive", + "j", + "je", + "jm", + "jo", + "join", + "jp", + "just", + "k", + "ke", "keep", + "keeps", + "kept", + "keys", + "kg", + "kh", + "ki", + "kind", + "km", + "kn", + "knew", + "know", + "known", + "knows", + "kp", + "kr", + "kw", + "ky", + "kz", + "l", + "la", + "large", + "largely", "last", + "lately", + "later", + "latest", "latter", "latterly", + "lb", + "lc", "least", + "length", "less", + "lest", + "let", + "let's", + "lets", + "li", + "like", + "liked", + "likely", + "likewise", + "line", + "little", + "lk", + "ll", + "long", + "longer", + "longest", + "look", + "looking", + "looks", + "low", + "lower", + "lr", + "ls", + "lt", "ltd", + "lu", + "lv", + "ly", + "m", + "ma", "made", + "mainly", + "make", + "makes", + "making", + "man", "many", "may", + "maybe", + "mayn't", + "maynt", + "mc", + "md", "me", + "mean", + "means", + "meantime", "meanwhile", + "member", + "members", + "men", + "merely", + "mg", + "mh", + "microsoft", "might", + "might've", + "mightn't", + "mightnt", + "mil", "mill", + "million", "mine", + "minus", + "miss", + "mk", + "ml", + "mm", + "mn", + "mo", "more", "moreover", "most", "mostly", "move", + "mp", + "mq", + "mr", + "mrs", + "ms", + "msie", + "mt", + "mu", "much", + "mug", "must", + "must've", + "mustn't", + "mustnt", + "mv", + "mw", + "mx", "my", "myself", + "myse”", + "mz", + "n", + "na", "name", "namely", + "nay", + "nc", + "nd", + "ne", + "near", + "nearly", + "necessarily", + "necessary", + "need", + "needed", + "needing", + "needn't", + "neednt", + "needs", "neither", + "net", + "netscape", "never", + "neverf", + "neverless", "nevertheless", + "new", + "newer", + "newest", "next", + "nf", + "ng", + "ni", "nine", + "ninety", + "nl", "no", + "no-one", "nobody", + "non", "none", + "nonetheless", "noone", "nor", + "normally", + "nos", "not", + "noted", "nothing", + "notwithstanding", + "novel", "now", "nowhere", + "np", + "nr", + "nu", + "null", + "number", + "numbers", + "nz", + "o", + "obtain", + "obtained", + "obviously", "of", "off", "often", + "oh", + "ok", + "okay", + "old", + "older", + "oldest", + "om", + "omitted", "on", "once", "one", + "one's", + "ones", "only", "onto", + "open", + "opened", + "opening", + "opens", + "opposite", "or", + "ord", + "order", + "ordered", + "ordering", + "orders", + "org", "other", "others", "otherwise", + "ought", + "oughtn't", + "oughtnt", "our", "ours", "ourselves", "out", + "outside", "over", + "overall", + "owing", "own", + "p", + "pa", + "page", + "pages", "part", + "parted", + "particular", + "particularly", + "parting", + "parts", + "past", + "pe", "per", "perhaps", + "pf", + "pg", + "ph", + "pk", + "pl", + "place", + "placed", + "places", "please", + "plus", + "pm", + "pmid", + "pn", + "point", + "pointed", + "pointing", + "points", + "poorly", + "possible", + "possibly", + "potentially", + "pp", + "pr", + "predominantly", + "present", + "presented", + "presenting", + "presents", + "presumably", + "previously", + "primarily", + "probably", + "problem", + "problems", + "promptly", + "proud", + "provided", + "provides", + "pt", "put", + "puts", + "pw", + "py", + "q", + "qa", + "que", + "quickly", + "quite", + "qv", + "r", + "ran", "rather", + "rd", "re", + "readily", + "really", + "reasonably", + "recent", + "recently", + "ref", + "refs", + "regarding", + "regardless", + "regards", + "related", + "relatively", + "research", + "reserved", + "respectively", + "resulted", + "resulting", + "results", + "right", + "ring", + "ro", + "room", + "rooms", + "round", + "ru", + "run", + "rw", + "s", + "sa", + "said", "same", + "saw", + "say", + "saying", + "says", + "sb", + "sc", + "sd", + "se", + "sec", + "second", + "secondly", + "seconds", + "section", "see", + "seeing", "seem", "seemed", "seeming", "seems", + "seen", + "sees", + "self", + "selves", + "sensible", + "sent", "serious", + "seriously", + "seven", + "seventy", "several", + "sg", + "sh", + "shall", + "shan't", + "shant", "she", + "she'd", + "she'll", + "she's", + "shed", + "shell", + "shes", "should", + "should've", + "shouldn", + "shouldn't", + "shouldnt", "show", + "showed", + "showing", + "shown", + "showns", + "shows", + "si", "side", + "sides", + "significant", + "significantly", + "similar", + "similarly", "since", "sincere", + "site", "six", "sixty", + "sj", + "sk", + "sl", + "slightly", + "sm", + "small", + "smaller", + "smallest", + "sn", "so", "some", + "somebody", + "someday", "somehow", "someone", + "somethan", "something", "sometime", "sometimes", + "somewhat", "somewhere", + "soon", + "sorry", + "specifically", + "specified", + "specify", + "specifying", + "sr", + "st", + "state", + "states", "still", + "stop", + "strongly", + "su", + "sub", + "substantially", + "successfully", "such", + "sufficiently", + "suggest", + "sup", + "sure", + "sv", + "sy", "system", + "sz", + "t", + "t's", "take", + "taken", + "taking", + "tc", + "td", + "tell", "ten", + "tends", + "test", + "text", + "tf", + "tg", + "th", "than", + "thank", + "thanks", + "thanx", "that", + "that'll", + "that's", + "that've", + "thatll", + "thats", + "thatve", "the", "their", + "theirs", "them", "themselves", "then", "thence", "there", + "there'd", + "there'll", + "there're", + "there's", + "there've", "thereafter", "thereby", + "thered", "therefore", "therein", + "therell", + "thereof", + "therere", + "theres", + "thereto", "thereupon", + "thereve", "these", "they", + "they'd", + "they'll", + "they're", + "they've", + "theyd", + "theyll", + "theyre", + "theyve", "thick", "thin", + "thing", + "things", + "think", + "thinks", "third", + "thirty", "this", + "thorough", + "thoroughly", "those", + "thou", "though", + "thoughh", + "thought", + "thoughts", + "thousand", "three", + "throug", "through", "throughout", "thru", "thus", + "til", + "till", + "tip", + "tis", + "tj", + "tk", + "tm", + "tn", "to", + "today", "together", "too", + "took", "top", "toward", "towards", + "tp", + "tr", + "tried", + "tries", + "trillion", + "truly", + "try", + "trying", + "ts", + "tt", + "turn", + "turned", + "turning", + "turns", + "tv", + "tw", + "twas", "twelve", "twenty", + "twice", "two", + "tz", + "u", + "ua", + "ug", + "uk", + "um", "un", "under", + "underneath", + "undoing", + "unfortunately", + "unless", + "unlike", + "unlikely", "until", + "unto", "up", "upon", + "ups", + "upwards", "us", + "use", + "used", + "useful", + "usefully", + "usefulness", + "uses", + "using", + "usually", + "uucp", + "uy", + "uz", + "v", + "va", + "value", + "various", + "vc", + "ve", + "versus", "very", + "vg", + "vi", "via", + "viz", + "vn", + "vol", + "vols", + "vs", + "vu", + "w", + "want", + "wanted", + "wanting", + "wants", "was", + "wasn", + "wasn't", + "wasnt", + "way", + "ways", "we", + "we'd", + "we'll", + "we're", + "we've", + "web", + "webpage", + "website", + "wed", + "welcome", "well", + "wells", + "went", "were", + "weren", + "weren't", + "werent", + "weve", + "wf", "what", + "what'd", + "what'll", + "what's", + "what've", "whatever", + "whatll", + "whats", + "whatve", "when", + "when'd", + "when'll", + "when's", "whence", "whenever", "where", + "where'd", + "where'll", + "where's", "whereafter", "whereas", "whereby", "wherein", + "wheres", "whereupon", "wherever", "whether", "which", + "whichever", "while", + "whilst", + "whim", "whither", "who", + "who'd", + "who'll", + "who's", + "whod", "whoever", "whole", + "wholl", "whom", + "whomever", + "whos", "whose", "why", + "why'd", + "why'll", + "why's", + "widely", + "width", "will", + "willing", + "wish", "with", "within", "without", + "won", + "won't", + "wonder", + "wont", + "words", + "work", + "worked", + "working", + "works", + "world", "would", + "would've", + "wouldn", + "wouldn't", + "wouldnt", + "ws", + "www", + "x", + "y", + "ye", + "year", + "years", + "yes", "yet", "you", + "you'd", + "you'll", + "you're", + "you've", + "youd", + "youll", + "young", + "younger", + "youngest", "your", + "youre", "yours", "yourself", "yourselves", - "issue", - "doing", - "having", - "lot" + "youve", + "yt", + "yu", + "z", + "za", + "zero", + "zm", + "zr", ]; diff --git a/lib/stopWords.ts b/lib/stopWords.ts deleted file mode 100644 index eb82161..0000000 --- a/lib/stopWords.ts +++ /dev/null @@ -1,325 +0,0 @@ -export const ENGLISH_STOP_WORDS = - [ - "a", - "about", - "above", - "across", - "after", - "afterwards", - "again", - "against", - "all", - "almost", - "alone", - "along", - "already", - "also", - "although", - "always", - "am", - "among", - "amongst", - "amoungst", - "amount", - "an", - "and", - "another", - "any", - "anyhow", - "anyone", - "anything", - "anyway", - "anywhere", - "are", - "around", - "as", - "at", - "back", - "be", - "became", - "because", - "become", - "becomes", - "becoming", - "been", - "before", - "beforehand", - "behind", - "being", - "below", - "beside", - "besides", - "between", - "beyond", - "bill", - "both", - "bottom", - "but", - "by", - "call", - "can", - "cannot", - "cant", - "co", - "con", - "could", - "couldnt", - "cry", - "de", - "describe", - "detail", - "do", - "done", - "down", - "due", - "during", - "each", - "eg", - "eight", - "either", - "eleven", - "else", - "elsewhere", - "empty", - "enough", - "etc", - "even", - "ever", - "every", - "everyone", - "everything", - "everywhere", - "except", - "few", - "fifteen", - "fifty", - "fill", - "find", - "fire", - "first", - "five", - "for", - "former", - "formerly", - "forty", - "found", - "four", - "from", - "front", - "full", - "further", - "get", - "give", - "go", - "had", - "has", - "hasnt", - "have", - "he", - "hence", - "her", - "here", - "hereafter", - "hereby", - "herein", - "hereupon", - "hers", - "herself", - "him", - "himself", - "his", - "how", - "however", - "hundred", - "i", - "ie", - "if", - "in", - "inc", - "indeed", - "interest", - "into", - "is", - "it", - "its", - "itself", - "keep", - "last", - "latter", - "latterly", - "least", - "less", - "ltd", - "made", - "many", - "may", - "me", - "meanwhile", - "might", - "mill", - "mine", - "more", - "moreover", - "most", - "mostly", - "move", - "much", - "must", - "my", - "myself", - "name", - "namely", - "neither", - "never", - "nevertheless", - "next", - "nine", - "no", - "nobody", - "none", - "noone", - "nor", - "not", - "nothing", - "now", - "nowhere", - "of", - "off", - "often", - "on", - "once", - "one", - "only", - "onto", - "or", - "other", - "others", - "otherwise", - "our", - "ours", - "ourselves", - "out", - "over", - "own", - "part", - "per", - "perhaps", - "please", - "put", - "rather", - "re", - "same", - "see", - "seem", - "seemed", - "seeming", - "seems", - "serious", - "several", - "she", - "should", - "show", - "side", - "since", - "sincere", - "six", - "sixty", - "so", - "some", - "somehow", - "someone", - "something", - "sometime", - "sometimes", - "somewhere", - "still", - "such", - "system", - "take", - "ten", - "than", - "that", - "the", - "their", - "them", - "themselves", - "then", - "thence", - "there", - "thereafter", - "thereby", - "therefore", - "therein", - "thereupon", - "these", - "they", - "thick", - "thin", - "third", - "this", - "those", - "though", - "three", - "through", - "throughout", - "thru", - "thus", - "to", - "together", - "too", - "top", - "toward", - "towards", - "twelve", - "twenty", - "two", - "un", - "under", - "until", - "up", - "upon", - "us", - "very", - "via", - "was", - "we", - "well", - "were", - "what", - "whatever", - "when", - "whence", - "whenever", - "where", - "whereafter", - "whereas", - "whereby", - "wherein", - "whereupon", - "wherever", - "whether", - "which", - "while", - "whither", - "who", - "whoever", - "whole", - "whom", - "whose", - "why", - "will", - "with", - "within", - "without", - "would", - "yet", - "you", - "your", - "yours", - "yourself", - "yourselves", - "issue", - "doing", - "having", - "lot" - ]; \ No newline at end of file From 7d15c92837aca8ef1d8477aa7f80d0eb3f8b29ff Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 10 Apr 2024 00:17:54 -0500 Subject: [PATCH 093/111] SEAAARCH issues in the issuelib --- components/diagnosis/Search.tsx | 112 +++++++++++++++++- .../diagnosis/SuggestedIssues.module.css | 1 + components/diagnosis/SuggestedIssues.tsx | 2 +- lib/TFIDF.js | 6 +- 4 files changed, 113 insertions(+), 8 deletions(-) diff --git a/components/diagnosis/Search.tsx b/components/diagnosis/Search.tsx index 0f3ef30..f992d51 100644 --- a/components/diagnosis/Search.tsx +++ b/components/diagnosis/Search.tsx @@ -1,10 +1,114 @@ import React, { useState, useEffect } from 'react'; import styles from './Search.module.css'; -const Search: React.FC = ({}) => { +const Search: React.FC<{ issueLib: { title: string; description: string }[] }> = ({ issueLib }) => { + const [searchTerm, setSearchTerm] = useState(''); + const [searchResults, setSearchResults] = useState([]); + const [relevantResults, setRelevantResults] = useState([]); + const [noResults, setNoResults] = useState(false); + + const handleSearch = () => { + const searchTerms = searchTerm.toLowerCase().split(" "); + const ExactMatchesSet = new Set(); + const relevantResultsSet = new Set(); + + issueLib.forEach(issue => { + const titleLowerCase = issue.title.toLowerCase(); + const descriptionLowerCase = issue.description.toLowerCase(); + + searchTerms.forEach(term => { + if (titleLowerCase.includes(term)) { + ExactMatchesSet.add(issue); + } else if (descriptionLowerCase.includes(term)) { + relevantResultsSet.add(issue); + } + }); + }); + + const ExactMatches = Array.from(ExactMatchesSet); + const RelevantResults = Array.from(relevantResultsSet); + + if (ExactMatches.length > 0) { + setSearchResults(ExactMatches); + } else { + setSearchResults([]); + } + if (RelevantResults.length > 0) { + setRelevantResults(RelevantResults); + } else { + setRelevantResults([]); + } + if (ExactMatches.length == 0 && RelevantResults.length == 0) { + setNoResults(true) + } + }; + + useEffect(() => { + console.log('desc match', relevantResults); + console.log('title match', searchResults); + }, [relevantResults, searchResults]); + + const handleChange = (event: React.ChangeEvent) => { + setSearchTerm(event.target.value); + }; + + const handleKeyPress = (event: React.KeyboardEvent) => { + if (event.key === 'Enter') { + handleSearch(); + } + }; + + const handleButtonClick = () => { + handleSearch(); + }; + return ( -

        HEYYY

        - ) -} +
        +
        + + +
        + {noResults &&

        No relevant issue found

        } +
        + {searchResults.length > 0 && ( +
        + {searchResults.map((result, index) => ( +
        +

        {result.title}

        +
        + ))} +
        + )} + {relevantResults.length > 0 && ( +
        + {relevantResults.length > 0 && ( +
        +

        Other Relevant Issues

        + {relevantResults.map((result, index) => ( +
        +

        {result.title}

        +

        {result.description}

        +
        + ))} +
        + )} +
        + )} +
        +
        + ); +}; export default Search; \ No newline at end of file diff --git a/components/diagnosis/SuggestedIssues.module.css b/components/diagnosis/SuggestedIssues.module.css index be25fec..942b1a1 100644 --- a/components/diagnosis/SuggestedIssues.module.css +++ b/components/diagnosis/SuggestedIssues.module.css @@ -3,6 +3,7 @@ background-color: white; margin-right: 8px; padding: 8px; + height: 30%; } .sideBySideItem1 textarea { diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index 7e30762..c88c07f 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -50,7 +50,7 @@ const SuggestedIssues: React.FC = ({insight, setTabs, issueLib}) => {
        - +
        diff --git a/lib/TFIDF.js b/lib/TFIDF.js index 67d9cec..577fbcd 100644 --- a/lib/TFIDF.js +++ b/lib/TFIDF.js @@ -50,9 +50,9 @@ function getTopSimilarIssues(issues, mentorNote, topN = 3) { return _.sortBy(vector, 'term'); }); - // Print TF-IDF vector for mentor notes - console.log("TF-IDF Matrix note:"); - console.table(tfidfMatrix[0]); + // // Print TF-IDF vector for mentor notes + // console.log("TF-IDF Matrix note:"); + // console.table(tfidfMatrix[0]); // Compute cosine similarity between mentor's note and issue descriptions const mentorVector = tfidfMatrix[0].map(term => term.tfidf); From 6fb6ec65360883f06969474aeb9a00171e257977 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 10 Apr 2024 01:28:04 -0500 Subject: [PATCH 094/111] formatting add button for suggestedIssues --- components/diagnosis/SuggestedIssues.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index c88c07f..d073ea0 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -41,10 +41,12 @@ const SuggestedIssues: React.FC = ({insight, setTabs, issueLib}) => {

        TF-IDF Suggested Issues

        {result.map((issue, index) => ( -
        -

        {issue.title}

        -

        Similarity: {issue.similarity}

        - +
        {/* Added flex container */} +
        +

        {issue.title}

        +

        Similarity: {issue.similarity}

        +
        + {/* Styled button */}
        ))}
        From 2d13661da825169e909d7e573c143a7f05eb4b0a Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 10 Apr 2024 01:38:23 -0500 Subject: [PATCH 095/111] add stemming and stop word removal to search --- components/diagnosis/Search.tsx | 47 ++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 15 deletions(-) diff --git a/components/diagnosis/Search.tsx b/components/diagnosis/Search.tsx index f992d51..c120518 100644 --- a/components/diagnosis/Search.tsx +++ b/components/diagnosis/Search.tsx @@ -1,4 +1,6 @@ import React, { useState, useEffect } from 'react'; +import natural from 'natural'; +import { ENGLISH_STOP_WORDS } from '../../lib/stopWords.js'; import styles from './Search.module.css'; const Search: React.FC<{ issueLib: { title: string; description: string }[] }> = ({ issueLib }) => { @@ -7,22 +9,37 @@ const Search: React.FC<{ issueLib: { title: string; description: string }[] }> = const [relevantResults, setRelevantResults] = useState([]); const [noResults, setNoResults] = useState(false); + const stemmer = natural.PorterStemmer; + + // Remove stop words + const removeStopWords = (text: string) => { + return text + .toLowerCase() + .split(" ") + .filter(word => !ENGLISH_STOP_WORDS.includes(word)) + .join(" "); + }; + const handleSearch = () => { - const searchTerms = searchTerm.toLowerCase().split(" "); + const searchTerms = removeStopWords(searchTerm).split(" "); const ExactMatchesSet = new Set(); const relevantResultsSet = new Set(); issueLib.forEach(issue => { - const titleLowerCase = issue.title.toLowerCase(); - const descriptionLowerCase = issue.description.toLowerCase(); - - searchTerms.forEach(term => { - if (titleLowerCase.includes(term)) { - ExactMatchesSet.add(issue); - } else if (descriptionLowerCase.includes(term)) { - relevantResultsSet.add(issue); - } - }); + const titleLowerCase = removeStopWords(issue.title); + const descriptionLowerCase = removeStopWords(issue.description); + + const stemmedSearchTerms = searchTerms.map(term => stemmer.stem(term)); + const stemmedTitle = stemmer.stem(titleLowerCase); + const stemmedDescription = stemmer.stem(descriptionLowerCase); + + stemmedSearchTerms.forEach(term => { + if (stemmedTitle.includes(term)) { + ExactMatchesSet.add(issue); + } else if (stemmedDescription.includes(term)) { + relevantResultsSet.add(issue); + } + }); }); const ExactMatches = Array.from(ExactMatchesSet); @@ -43,10 +60,10 @@ const Search: React.FC<{ issueLib: { title: string; description: string }[] }> = } }; - useEffect(() => { - console.log('desc match', relevantResults); - console.log('title match', searchResults); - }, [relevantResults, searchResults]); + // useEffect(() => { + // console.log('desc match', relevantResults); + // console.log('title match', searchResults); + // }, [relevantResults, searchResults]); const handleChange = (event: React.ChangeEvent) => { setSearchTerm(event.target.value); From 954965a06ded2b53d1250fbfefbe2a25623e1872 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 10 Apr 2024 02:23:53 -0500 Subject: [PATCH 096/111] update datamodel for addtotabs --- components/diagnosis/SuggestedIssues.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index d073ea0..5b9178b 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -29,6 +29,10 @@ const SuggestedIssues: React.FC = ({insight, setTabs, issueLib}) => { rc:'yo', strategy: 'test', question: 'aha' + }], + hypothesisList: [{ + title: 'hey', + content:'yo', }] }; setTabs((prevTabs) => [...prevTabs, newTab]); From f81b9cfa266e5c2322fdf6ba26203728791e0215 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 10 Apr 2024 08:45:39 -0500 Subject: [PATCH 097/111] add button in search --- components/diagnosis/Search.tsx | 31 ++++++++++++++++++--- components/diagnosis/SuggestedIssues.tsx | 34 +++++++++++++----------- pages/response.tsx | 3 ++- 3 files changed, 48 insertions(+), 20 deletions(-) diff --git a/components/diagnosis/Search.tsx b/components/diagnosis/Search.tsx index c120518..4ea86cb 100644 --- a/components/diagnosis/Search.tsx +++ b/components/diagnosis/Search.tsx @@ -3,7 +3,7 @@ import natural from 'natural'; import { ENGLISH_STOP_WORDS } from '../../lib/stopWords.js'; import styles from './Search.module.css'; -const Search: React.FC<{ issueLib: { title: string; description: string }[] }> = ({ issueLib }) => { +const Search: React.FC = ({ issueLib, setTabs }) => { const [searchTerm, setSearchTerm] = useState(''); const [searchResults, setSearchResults] = useState([]); const [relevantResults, setRelevantResults] = useState([]); @@ -79,6 +79,27 @@ const Search: React.FC<{ issueLib: { title: string; description: string }[] }> = handleSearch(); }; + const handleAddToTabs = (title: string) => { + console.log('issueLib', issueLib) + console.log('title', title) + const foundIssue = issueLib.find(issue => issue.title === title); + + if (foundIssue) { + const newTab = { + selectedRCModel: foundIssue.title, + rcs: foundIssue.rcs, + hypothesisList: [{ + title: 'First Hunch', + content:'Input your first hunch here...', + }] + }; + setTabs((prevTabs) => [...prevTabs, newTab]); + } else { + // Handle case when the issue with the given title is not found + console.error(`Issue with title "${title}" not found in issueLib.`); + } + }; + return (
        @@ -102,8 +123,9 @@ const Search: React.FC<{ issueLib: { title: string; description: string }[] }> = {searchResults.length > 0 && (
        {searchResults.map((result, index) => ( -
        +

        {result.title}

        +
        ))}
        @@ -114,9 +136,10 @@ const Search: React.FC<{ issueLib: { title: string; description: string }[] }> =

        Other Relevant Issues

        {relevantResults.map((result, index) => ( -
        +

        {result.title}

        -

        {result.description}

        + {/*

        {result.description}

        */} +
        ))}
        diff --git a/components/diagnosis/SuggestedIssues.tsx b/components/diagnosis/SuggestedIssues.tsx index 5b9178b..139389e 100644 --- a/components/diagnosis/SuggestedIssues.tsx +++ b/components/diagnosis/SuggestedIssues.tsx @@ -22,20 +22,24 @@ const SuggestedIssues: React.FC = ({insight, setTabs, issueLib}) => { }, [insight]); const handleAddToTabs = (title: string) => { - let newTab = { - tabID: 'haha', - selectedRCModel: title, - rcs: [{ - rc:'yo', - strategy: 'test', - question: 'aha' - }], - hypothesisList: [{ - title: 'hey', - content:'yo', - }] - }; - setTabs((prevTabs) => [...prevTabs, newTab]); + console.log('issueLib', issueLib) + console.log('title', title) + const foundIssue = issueLib.find(issue => issue.title === title); + + if (foundIssue) { + const newTab = { + selectedRCModel: foundIssue.title, + rcs: foundIssue.rcs, + hypothesisList: [{ + title: 'First Hunch', + content:'Input your first hunch here...', + }] + }; + setTabs((prevTabs) => [...prevTabs, newTab]); + } else { + // Handle case when the issue with the given title is not found + console.error(`Issue with title "${title}" not found in issueLib.`); + } }; return ( @@ -56,7 +60,7 @@ const SuggestedIssues: React.FC = ({insight, setTabs, issueLib}) => {
        - +
        diff --git a/pages/response.tsx b/pages/response.tsx index 4e2fffa..02463e6 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -111,7 +111,8 @@ async function getIssuesFromDatabase() { const issues = await connectMongo({ find: "RCLibrary" }); return issues.map(issue => ({ title: issue.issue_title, - description: issue.description + description: issue.description, + rcs: issue.rcs })); } catch (error) { console.error("Error fetching issues from database:", error); From ce6c9c7b260ca51e29abf6cf766d761fb76dcbe9 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 10 Apr 2024 08:50:46 -0500 Subject: [PATCH 098/111] better formatting for hypo list --- components/diagnosis/Hypothesis.module.css | 4 ++-- components/diagnosis/HypothesisList.module.css | 1 - components/diagnosis/Search.tsx | 2 +- components/diagnosis/SuggestedIssues.tsx | 4 ++-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/components/diagnosis/Hypothesis.module.css b/components/diagnosis/Hypothesis.module.css index ae80c13..6057939 100644 --- a/components/diagnosis/Hypothesis.module.css +++ b/components/diagnosis/Hypothesis.module.css @@ -7,8 +7,8 @@ } .hypo_container{ - margin: 10px; - padding: 20px; + margin: 5px; + padding: 10px; background: lightgray; height: 35vh; } \ No newline at end of file diff --git a/components/diagnosis/HypothesisList.module.css b/components/diagnosis/HypothesisList.module.css index 7a5e688..712079b 100644 --- a/components/diagnosis/HypothesisList.module.css +++ b/components/diagnosis/HypothesisList.module.css @@ -1,7 +1,6 @@ .header { background-color: white; padding: 15px; - margin: 8px; } .headerTitle { diff --git a/components/diagnosis/Search.tsx b/components/diagnosis/Search.tsx index 4ea86cb..0456256 100644 --- a/components/diagnosis/Search.tsx +++ b/components/diagnosis/Search.tsx @@ -105,7 +105,7 @@ const Search: React.FC = ({ issueLib, setTabs }) => {
        {

        TF-IDF Suggested Issues

        {result.map((issue, index) => ( -
        {/* Added flex container */} +

        {issue.title}

        Similarity: {issue.similarity}

        - {/* Styled button */} +
        ))}
        From 593c2da98c447a38d7bb85a9646263579436e98c Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 10 Apr 2024 09:30:59 -0500 Subject: [PATCH 099/111] checkboxes --- components/diagnosis/Insight.module.css | 2 +- components/diagnosis/Insight.tsx | 57 ++++++++++++++++++++++--- lib/TFIDF.js | 16 ++++--- pages/response.tsx | 9 ++-- 4 files changed, 67 insertions(+), 17 deletions(-) diff --git a/components/diagnosis/Insight.module.css b/components/diagnosis/Insight.module.css index 507cd7b..b3a2a9c 100644 --- a/components/diagnosis/Insight.module.css +++ b/components/diagnosis/Insight.module.css @@ -21,4 +21,4 @@ font-size: 1.5rem; font-weight: bold; margin-bottom: 0.5rem; -} +} \ No newline at end of file diff --git a/components/diagnosis/Insight.tsx b/components/diagnosis/Insight.tsx index ac08f75..fa1dcf3 100644 --- a/components/diagnosis/Insight.tsx +++ b/components/diagnosis/Insight.tsx @@ -4,25 +4,68 @@ import styles from './Insight.module.css'; interface Props { insight: string; setInsight: (content: string) => void; + setSelectedInsight: (content: string) => void; } -const Insight: React.FC = ({ insight, setInsight }) => { +const Insight: React.FC = ({ insight, setInsight, setSelectedInsight}) => { + const [linesWithCheck, setLinesWithCheck] = useState([]); + const handleInputChange = (event: ChangeEvent) => { setInsight(event.target.value); }; + const toggleCheck = (index: number) => { + if (linesWithCheck.includes(index)) { + setLinesWithCheck(linesWithCheck.filter((lineIndex) => lineIndex !== index)); + setSelectedInsight((prevSelected) => { + const lines = prevSelected.split('\n'); + console.log('OFF lines', lines, 'index', index) + return lines.filter((line, i) => i !== index).join('\n'); + }); + } else { + setLinesWithCheck([...linesWithCheck, index]); + setSelectedInsight((prevSelected) => { + const lines = prevSelected.split('\n'); + console.log('ON lines', lines, 'index', index) + if (prevSelected === ''){ + return insight.split('\n')[index]; + } else { + return [...lines, insight.split('\n')[index]].join('\n'); + } + }); + } + }; + + const renderCheckboxes = () => { + const lines = insight.split('\n'); + return lines.map((line, index) => ( +
        + toggleCheck(index)} + className={styles.checkbox} + /> + {line} +
        + )); + }; + return (

        Observations

        What signals of ineffective work practices did you see? As you ask about them, please write down the insights you gained. Select observations related to one issue that you wish to focus on. Selected observations will be fed into TFIDF to generate suggestions.

        - +
        + {renderCheckboxes()} + +
        ); }; diff --git a/lib/TFIDF.js b/lib/TFIDF.js index 577fbcd..c95e7e8 100644 --- a/lib/TFIDF.js +++ b/lib/TFIDF.js @@ -42,12 +42,16 @@ function getTopSimilarIssues(issues, mentorNote, topN = 3) { // Compute TF-IDF vectors const tfidfMatrix = documents.map(doc => { const terms = doc.match(/\b\w+\b/g); // Regular expression to match words - const uniqueTerms = terms.filter(term => !ENGLISH_STOP_WORDS.includes(term)); // find unique terms - const vectorTerms = vectorizer.listTerms(0).filter(term => !ENGLISH_STOP_WORDS.includes(term.term)); // Exclude stopwords from vectorizer - const vector = vectorTerms.map(term => { - return { term: term.term, tfidf: uniqueTerms.includes(term.term) ? term.tfidf : 0 }; - }); - return _.sortBy(vector, 'term'); + if (terms) { + const uniqueTerms = terms.filter(term => !ENGLISH_STOP_WORDS.includes(term)); // find unique terms + const vectorTerms = vectorizer.listTerms(0).filter(term => !ENGLISH_STOP_WORDS.includes(term.term)); // Exclude stopwords from vectorizer + const vector = vectorTerms.map(term => { + return { term: term.term, tfidf: uniqueTerms.includes(term.term) ? term.tfidf : 0 }; + }); + return _.sortBy(vector, 'term'); + } else { + return []; + } }); // // Print TF-IDF vector for mentor notes diff --git a/pages/response.tsx b/pages/response.tsx index 02463e6..55b08ed 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -34,6 +34,7 @@ const Response: NextPage = ({ const [tabs, setTabs] = useState(rcModelTabs); const [notes, setNotes] = useState(Notes); const [insight, setInsight] = useState(insightNotes); + const [selectedInsight, setSelectedInsight] = useState(''); const updateResponse = async () => { try { @@ -79,16 +80,18 @@ const Response: NextPage = ({ // Watch out for changes in state variables in [], and execute the function inside useEffect(() => { updateResponse(); - }, [notes, insight, tabs]); + console.log('selectedInsight', selectedInsight) + console.log('insight', insight) + }, [notes, insight, tabs, selectedInsight]); return (
        - +
        - +
        From ab4a2fedfcbd9c5a5951afad41b0c1ab0da8e310 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 30 Apr 2024 22:06:28 -0500 Subject: [PATCH 100/111] basic structure --- components/diagnosis/Coverage.module.css | 25 +++ components/diagnosis/Coverage.tsx | 26 +++ components/diagnosis/Deliverable.module.css | 25 +++ components/diagnosis/Deliverable.tsx | 16 ++ components/diagnosis/GamePlan.module.css | 3 +- components/diagnosis/InitialHunch.module.css | 3 +- components/diagnosis/SimpleContext.module.css | 24 +++ components/diagnosis/SimpleContext.tsx | 15 ++ lib/ostest/.response.json.icloud | Bin 163 -> 0 bytes lib/regulatoryLib.ts | 168 ++++++++++++++++++ pages/api/test/update_response.js | 6 +- pages/response.tsx | 44 +++-- 12 files changed, 339 insertions(+), 16 deletions(-) create mode 100644 components/diagnosis/Coverage.module.css create mode 100644 components/diagnosis/Coverage.tsx create mode 100644 components/diagnosis/Deliverable.module.css create mode 100644 components/diagnosis/Deliverable.tsx create mode 100644 components/diagnosis/SimpleContext.module.css create mode 100644 components/diagnosis/SimpleContext.tsx delete mode 100644 lib/ostest/.response.json.icloud create mode 100644 lib/regulatoryLib.ts diff --git a/components/diagnosis/Coverage.module.css b/components/diagnosis/Coverage.module.css new file mode 100644 index 0000000..1cf3831 --- /dev/null +++ b/components/diagnosis/Coverage.module.css @@ -0,0 +1,25 @@ +.sideBySideItem2 { + width: 98%; + height: 100%; + background-color: white; + padding: 8px; + } + + .sideBySideItem2 textarea { + width: 100%; + background-color: #e5e7eb; + height: 100px; + padding: 10px; + box-sizing: border-box; + } + + .sideBySideItem2 p { + font-size: 0.8rem; + margin-bottom: 10px; + } + + .headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; + } \ No newline at end of file diff --git a/components/diagnosis/Coverage.tsx b/components/diagnosis/Coverage.tsx new file mode 100644 index 0000000..9b951c6 --- /dev/null +++ b/components/diagnosis/Coverage.tsx @@ -0,0 +1,26 @@ +import React, { useState, useEffect, ChangeEvent } from 'react'; +import styles from './Coverage.module.css'; +import {deliverableRegulatoryLib, repRegulatoryLib} from '../../lib/regulatoryLib' + +const Coverage: React.FC = ({}) => { + + return ( +
        +

        Select Cognitive Issue from Library

        +

        Deliverables:

        +
          + {deliverableRegulatoryLib.map((item, index) => ( +
        • {item.title}
        • + ))} +
        +

        Mentee choose representation that are:

        +
          + {repRegulatoryLib.map((item, index) => ( +
        • {item.title}
        • + ))} +
        +
        + ); +}; + +export default Coverage; \ No newline at end of file diff --git a/components/diagnosis/Deliverable.module.css b/components/diagnosis/Deliverable.module.css new file mode 100644 index 0000000..bac2103 --- /dev/null +++ b/components/diagnosis/Deliverable.module.css @@ -0,0 +1,25 @@ +.sideBySideItem2 { + width: 98%; + height: 100%; + background-color: white; + padding: 8px; +} + +.sideBySideItem2 textarea { + width: 100%; + background-color: #e5e7eb; + height: 100px; + padding: 10px; + box-sizing: border-box; +} + +.sideBySideItem2 p { + font-size: 0.8rem; + margin-bottom: 10px; +} + +.headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; +} \ No newline at end of file diff --git a/components/diagnosis/Deliverable.tsx b/components/diagnosis/Deliverable.tsx new file mode 100644 index 0000000..2352632 --- /dev/null +++ b/components/diagnosis/Deliverable.tsx @@ -0,0 +1,16 @@ +import React, { useState, useEffect, ChangeEvent } from 'react'; +import styles from './Deliverable.module.css'; + +const Deliverable: React.FC<> = ({}) => { + + return ( +
        +

        Take a look at Shirley and Jackie's deliverable. Write down any cognitive issues that you see with their deliverable

        + Link to Deliverable +



        Cognitive Issues with their Deliverable:

        + +
        + ); +}; + +export default Deliverable; \ No newline at end of file diff --git a/components/diagnosis/GamePlan.module.css b/components/diagnosis/GamePlan.module.css index b66d87a..493db93 100644 --- a/components/diagnosis/GamePlan.module.css +++ b/components/diagnosis/GamePlan.module.css @@ -1,5 +1,6 @@ .sideBySideItem2 { - width: 60%; + width: 98%; + height: 100%; background-color: white; padding: 8px; } diff --git a/components/diagnosis/InitialHunch.module.css b/components/diagnosis/InitialHunch.module.css index 65332b0..01c16fd 100644 --- a/components/diagnosis/InitialHunch.module.css +++ b/components/diagnosis/InitialHunch.module.css @@ -1,5 +1,6 @@ .sideBySideItem1 { - width: 40%; + width: 98%; + height: 100%; background-color: white; margin-right: 8px; padding: 8px; diff --git a/components/diagnosis/SimpleContext.module.css b/components/diagnosis/SimpleContext.module.css new file mode 100644 index 0000000..9f8ebbb --- /dev/null +++ b/components/diagnosis/SimpleContext.module.css @@ -0,0 +1,24 @@ +.sideBySideItem2 { + width: 98%; + background-color: white; + padding: 8px; + } + + .sideBySideItem2 textarea { + width: 100%; + background-color: #e5e7eb; + height: 100px; + padding: 10px; + box-sizing: border-box; + } + + .sideBySideItem2 p { + font-size: 0.8rem; + margin-bottom: 10px; + } + + .headerTitle { + font-size: 1.5rem; + font-weight: bold; + margin-bottom: 0.5rem; + } \ No newline at end of file diff --git a/components/diagnosis/SimpleContext.tsx b/components/diagnosis/SimpleContext.tsx new file mode 100644 index 0000000..dbdf38e --- /dev/null +++ b/components/diagnosis/SimpleContext.tsx @@ -0,0 +1,15 @@ +import styles from './SimpleContext.module.css'; + +const SimpleContext: React.FC<> = ({}) => { + + return ( +
        +

        Look into how you're students have been working

        +

        For each cognitive issue, we have encoded parts of the sprint log that can help you gain insight into whether some + regulatory gap is happening. Go to their sprint and use the relevant parts to help you understand how you're students have been working.

        + Link to Sprint Log +
        + ); +}; + +export default SimpleContext; \ No newline at end of file diff --git a/lib/ostest/.response.json.icloud b/lib/ostest/.response.json.icloud deleted file mode 100644 index e15418125e3a093a6660c749730afe6a76817bad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmYc)$jK}&F)+By$i&RT$`<1n92(@~mzbOComv?$AOPmNW#*&?XI4RkB;Z0psm1xF zMaiill?5QF*rL?pg8aPVRK2X?{5&CsewI1$0y0=t2c@Q$<|Gzz@XP3XMZ_|I0V5-X LW?+ZXFscRsqEIZX diff --git a/lib/regulatoryLib.ts b/lib/regulatoryLib.ts new file mode 100644 index 0000000..7c805e9 --- /dev/null +++ b/lib/regulatoryLib.ts @@ -0,0 +1,168 @@ +export const deliverableRegulatoryLib = [ + { + title: "Deliverable is about completely different risk than discussed last time", + description: "Agreed to bring in a deliverable, student worked on something completely different and brought in a completely different deliverable", + context: "placeholder", + gaps: {metacognitive: + [ + "[Didn't Take Feedback] Student didn't internalize the risk discussed last week", + "[Assessing Wrong Risk & Lack of Communication] Switched to new risk without communicating reason, did another risk-assessment that was completely wrong" + ], + emotional: + [ + "[Fear & Avoidance] Student is running away from riskiest risk, have trouble to focus on something that's important but hard, instead did something easier/they know how to do", + "[Reluctancy from disagreement] Student doesn't agree with mentor, have emotional blocker to work on something they don't agree with, decided to work on what they think is important -> student doesn't voice their opinion directly", + "[Disappointed by Setbacks so Not Hearing Feedback] Previous setback disappointed student, having hard time taking in any feedback and gather one's self to work on it", + ], + behavioral: + [], + strategic: + [ + "[Assessing Wrong Riskiest Risk] Multiple risks addressed during SIG, but mentee picked a less risky one contrary to mentor's expectation" + ] + } + }, + { + title: "Right risk but deliverable way off", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, + { + title: "Didn't bring in deliverable", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, + { + title: "On the right track but has project understanding issues", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, + { + title: "On the right track but lack focus on the understanding they want to show", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, + { + title: "On the right track but student don't see it that way", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, + { + title: "Brought in partial deliverable because encountered obstacle", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, + { + title: "Brought in partial deliverable because of limited notion of what the deliverable entails", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, +] + +export const repRegulatoryLib = [ + { + title: "Unclear in showing understanding because the rep doesn't make sense", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, + { + title: "structure of rep doesn't show understanding clearly", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, + { + title: "rep is only partial thus doesn't show full understanding", + description: "", + context: "", + gaps: {metacognitive: + [], + emotional: + [], + behavioral: + [], + strategic: + [] + } + }, +] \ No newline at end of file diff --git a/pages/api/test/update_response.js b/pages/api/test/update_response.js index 77520ec..448a53a 100644 --- a/pages/api/test/update_response.js +++ b/pages/api/test/update_response.js @@ -4,7 +4,7 @@ import { ObjectId } from 'mongodb'; export default async function updateResponse(req, res) { if (req.method === 'PUT') { try { - const { _id, insight, notes, rcModelTabs} = + const { _id, insight, notes, rcModelTabs, initialHunch, gamePlan} = req.body; const RCModelTabsObject = JSON.parse(rcModelTabs); const updatedResponse = await connectMongo({ @@ -14,7 +14,9 @@ export default async function updateResponse(req, res) { $set: { insight: insight, notes: notes, - rcModelTabs: RCModelTabsObject + rcModelTabs: RCModelTabsObject, + initialHunch: initialHunch, + gamePlan: gamePlan, }, }, new: true, diff --git a/pages/response.tsx b/pages/response.tsx index 55b08ed..fed3a03 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -15,11 +15,14 @@ import Context from '../components/diagnosis/DiagContext'; import InitialHunch from '../components/diagnosis/InitialHunch'; import GamePlan from '../components/diagnosis/GamePlan'; import Insight from '../components/diagnosis/Insight'; +import Deliverable from '../components/diagnosis/Deliverable'; +import Coverage from '../components/diagnosis/Coverage'; import SuggestionNotes from '../components/diagnosis/SuggestionNotes'; import SuggestedIssues from '../components/diagnosis/SuggestedIssues'; import Guidelines from '../components/diagnosis/Guidelines'; import getComputedOrganizationalObjectsForProject from '../pages/api/test/get_OS_project_object.js'; import { itemsEqual } from '@dnd-kit/sortable/dist/utilities'; +import SimpleContext from '../components/diagnosis/SimpleContext'; const Response: NextPage = ({ // All vars from props @@ -29,12 +32,16 @@ const Response: NextPage = ({ title, rcModelTabs, id, - issueLib + issueLib, + initialHunch, + gamePlan, }) => { const [tabs, setTabs] = useState(rcModelTabs); const [notes, setNotes] = useState(Notes); const [insight, setInsight] = useState(insightNotes); const [selectedInsight, setSelectedInsight] = useState(''); + const [hunch, setHunch] = useState(initialHunch); + const [plan, setPlan] = useState(gamePlan); const updateResponse = async () => { try { @@ -48,6 +55,8 @@ const Response: NextPage = ({ insight: insight, notes: notes, rcModelTabs: JSON.stringify(tabs), + initialHunch: hunch, + gamePlan: plan }), }); if (response.ok) { @@ -80,21 +89,29 @@ const Response: NextPage = ({ // Watch out for changes in state variables in [], and execute the function inside useEffect(() => { updateResponse(); - console.log('selectedInsight', selectedInsight) - console.log('insight', insight) - }, [notes, insight, tabs, selectedInsight]); + }, [notes, insight, tabs, selectedInsight, hunch, plan]); return (
        -
        - +
        +
        + +
        +
        + +
        -
        - +
        +
        -
        - +
        +
        + +
        +
        + +
        @@ -131,7 +148,6 @@ export const getServerSideProps: GetServerSideProps = async (context) => { filter: { _id: new ObjectId(response_id) }, }); data = data[0]; - const issues = await getIssuesFromDatabase(); let rcModelTabs = data['rcModelTabs']; @@ -162,6 +178,8 @@ export const getServerSideProps: GetServerSideProps = async (context) => { let notes = data.notes; let projName = data.projName; let title = data.title; + let initialHunch = data.initialHunch; + let gamePlan = data.gamePlan; // Pass content from DB to props return { @@ -172,7 +190,9 @@ export const getServerSideProps: GetServerSideProps = async (context) => { title: title, rcModelTabs: rcModelTabs, id: data._id.toString(), - issueLib: issues + issueLib: issues, + initialHunch: initialHunch, + gamePlan: gamePlan, }, }; }; From f1f221e1322d5ab6076e62bc6e660b42215f0549 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 30 Apr 2024 23:06:48 -0500 Subject: [PATCH 101/111] adding model --- components/diagnosis/Coverage.tsx | 16 ++++++++-- components/diagnosis/ListofRC.tsx | 45 +++++++++++++++------------- components/diagnosis/RCModelTab.tsx | 28 ++++------------- components/diagnosis/RCModelTabs.tsx | 4 +-- pages/response.tsx | 2 +- 5 files changed, 46 insertions(+), 49 deletions(-) diff --git a/components/diagnosis/Coverage.tsx b/components/diagnosis/Coverage.tsx index 9b951c6..0f5b010 100644 --- a/components/diagnosis/Coverage.tsx +++ b/components/diagnosis/Coverage.tsx @@ -2,7 +2,16 @@ import React, { useState, useEffect, ChangeEvent } from 'react'; import styles from './Coverage.module.css'; import {deliverableRegulatoryLib, repRegulatoryLib} from '../../lib/regulatoryLib' -const Coverage: React.FC = ({}) => { +const Coverage: React.FC = ({setTabs}) => { + const handleAddToTabs = (issue) => { + console.log('issue', issue) + + if (issue) { + setTabs((prevTabs) => [...prevTabs, issue]); + } else { + console.error(`Error adding model.`); + } + }; return (
        @@ -10,7 +19,10 @@ const Coverage: React.FC = ({}) => {

        Deliverables:

          {deliverableRegulatoryLib.map((item, index) => ( -
        • {item.title}
        • +
          +
        • {item.title}
        • + +
          ))}

        Mentee choose representation that are:

        diff --git a/components/diagnosis/ListofRC.tsx b/components/diagnosis/ListofRC.tsx index e2cf27a..56fd113 100644 --- a/components/diagnosis/ListofRC.tsx +++ b/components/diagnosis/ListofRC.tsx @@ -14,33 +14,36 @@ const ListofRC: React.FC = ({ items, setItems }) => { return (
        -

        List of Potential Root Causes:

          - {items.map((item, index) => ( +

          Metacogntive:

          + {items["metacognitive"].map((item, index) => (
        • -

          {item.rc}

          -

          Ask: {item.question}

          - - {expandedItems.includes(index) && ( -
          -

          Strategy:

          -
            - {item.strategy.split('\n').map((strategy, strategyIndex) => ( -
          • {strategy}
          • - ))} -
          -
          - )} +

          - {item}



          +
        • + ))} +

          Emotional:

          + {items["emotional"].map((item, index) => ( +
        • +

          - {item}

          +

          +
        • + ))} +

          Behavioral:

          + {items["behavioral"].map((item, index) => ( +
        • +

          - {item}

          +

          +
        • + ))} +

          +

          Strategic:

          + {items["strategic"].map((item, index) => ( +
        • +

          - {item}



        • ))} diff --git a/components/diagnosis/RCModelTab.tsx b/components/diagnosis/RCModelTab.tsx index 96e3ec1..695ea2f 100644 --- a/components/diagnosis/RCModelTab.tsx +++ b/components/diagnosis/RCModelTab.tsx @@ -2,35 +2,17 @@ import React, { useState, useEffect } from 'react'; import ListofRC from './ListofRC'; import HypothesisList from './HypothesisList'; -const RCModelTab = ({ tab, index, activeTab, setTabs}) => { - const defaultHypothesis = { - title: 'First Hunch', - content: 'fill in your first hunch here!', - }; - // if hypothesisList is filled in DB, return it. If not, use defaultHypothesis - const [hypos, setHypos] = useState(tab.hypothesisList || [defaultHypothesis]); - - const updateTabs = (index) => { - setTabs((prevTabs) => { - const newTabs = [...prevTabs]; - newTabs[index].hypothesisList = hypos; - return newTabs; - }); - }; - - useEffect(() => { - updateTabs(index) - }, [hypos]); - +const RCModelTab = ({ tab, index, activeTab}) => { return (
          - - +

          Description: {tab.description}

          +

          Relevant Context: {tab.context}

          + + {/* */}
          ) - } export default RCModelTab; diff --git a/components/diagnosis/RCModelTabs.tsx b/components/diagnosis/RCModelTabs.tsx index e6931a5..a054833 100644 --- a/components/diagnosis/RCModelTabs.tsx +++ b/components/diagnosis/RCModelTabs.tsx @@ -26,7 +26,7 @@ const RCModelTabs = ({ tabs, setTabs }) => { className={`px-4 py-2 rounded-t-lg focus:outline-none ${index === activeTab ? 'bg-blue-500 text-white' : 'bg-gray-300'}`} onClick={() => handleTabClick(index)} > - {tab.selectedRCModel} + {tab.title}
        {tabs.map((tab, index) => ( - + ))}
        diff --git a/pages/response.tsx b/pages/response.tsx index fed3a03..780d07a 100644 --- a/pages/response.tsx +++ b/pages/response.tsx @@ -99,7 +99,7 @@ const Response: NextPage = ({
        - +
        From 960c0ff3086ee69fde60a3a9cc005a5ab7d54e91 Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Tue, 30 Apr 2024 23:30:47 -0500 Subject: [PATCH 102/111] usability fixes --- components/diagnosis/Coverage.module.css | 1 - components/diagnosis/Coverage.tsx | 20 +++++++++++--------- components/diagnosis/Deliverable.tsx | 18 ++++++++++++++---- components/diagnosis/GamePlan.tsx | 3 +-- components/diagnosis/InitialHunch.tsx | 6 ++++-- components/diagnosis/RCModelTab.tsx | 4 ++-- components/diagnosis/SimpleContext.tsx | 2 +- pages/api/test/update_response.js | 3 ++- pages/response.tsx | 15 ++++++++++----- 9 files changed, 45 insertions(+), 27 deletions(-) diff --git a/components/diagnosis/Coverage.module.css b/components/diagnosis/Coverage.module.css index 1cf3831..9f8ebbb 100644 --- a/components/diagnosis/Coverage.module.css +++ b/components/diagnosis/Coverage.module.css @@ -1,6 +1,5 @@ .sideBySideItem2 { width: 98%; - height: 100%; background-color: white; padding: 8px; } diff --git a/components/diagnosis/Coverage.tsx b/components/diagnosis/Coverage.tsx index 0f5b010..e9f659b 100644 --- a/components/diagnosis/Coverage.tsx +++ b/components/diagnosis/Coverage.tsx @@ -4,7 +4,6 @@ import {deliverableRegulatoryLib, repRegulatoryLib} from '../../lib/regulatoryLi const Coverage: React.FC = ({setTabs}) => { const handleAddToTabs = (issue) => { - console.log('issue', issue) if (issue) { setTabs((prevTabs) => [...prevTabs, issue]); @@ -14,22 +13,25 @@ const Coverage: React.FC = ({setTabs}) => { }; return ( -
        +

        Select Cognitive Issue from Library

        -

        Deliverables:

        +

        Deliverables:

          {deliverableRegulatoryLib.map((item, index) => ( -
          -
        • {item.title}
        • - +
          +
        • {item.title}
        • +
          ))}
        -

        Mentee choose representation that are:

        +

        Mentee choose representation that are:

          {repRegulatoryLib.map((item, index) => ( -
        • {item.title}
        • - ))} +
          +
        • {item.title}
        • + +
          + ))}
        ); diff --git a/components/diagnosis/Deliverable.tsx b/components/diagnosis/Deliverable.tsx index 2352632..9ab885f 100644 --- a/components/diagnosis/Deliverable.tsx +++ b/components/diagnosis/Deliverable.tsx @@ -1,14 +1,24 @@ import React, { useState, useEffect, ChangeEvent } from 'react'; import styles from './Deliverable.module.css'; -const Deliverable: React.FC<> = ({}) => { +const Deliverable: React.FC<> = ({cogIssue, setcogIssue}) => { + const handleInputChange = (event: ChangeEvent) => { + setcogIssue(event.target.value); + }; return ( -
        -

        Take a look at Shirley and Jackie's deliverable. Write down any cognitive issues that you see with their deliverable

        +
        +

        Take a look at Shirley and Jackie's deliverable. Write down any cognitive issues that you see with their deliverable. + Then add to view the model in the panel on the right by selecting it from the library.

        +

        Link to Deliverable



        Cognitive Issues with their Deliverable:

        - +
        ); }; diff --git a/components/diagnosis/GamePlan.tsx b/components/diagnosis/GamePlan.tsx index 6b662cb..456143d 100644 --- a/components/diagnosis/GamePlan.tsx +++ b/components/diagnosis/GamePlan.tsx @@ -6,7 +6,6 @@ interface Props { setPlan: (content: string) => void; } - const GamePlan: React.FC = ({plan, setPlan}) => { const handleInputChange = (event: ChangeEvent) => { setPlan(event.target.value); @@ -16,7 +15,7 @@ const GamePlan: React.FC = ({plan, setPlan}) => {

        Game Plan

        Before going into your SIG meeting, write down some questions you plan to ask your students. - We have some suggested questions in the root cause list to help you both ask broadly and ask about specific root causes.

        + Try to design them in a way that would help you learn more about the gap in the student's regulatory skills

        -
        - ); -}; - -export default Signal; \ No newline at end of file From f39a9d7867e4545d0e53c20eda78bd9a6982f57b Mon Sep 17 00:00:00 2001 From: gragragrace <107156916+gragragrace@users.noreply.github.com> Date: Wed, 1 May 2024 00:22:05 -0500 Subject: [PATCH 105/111] delete unnecessary files --- components/diagnosis/Hypothesis.module.css | 14 -- components/diagnosis/Hypothesis.tsx | 34 ----- .../diagnosis/HypothesisList.module.css | 10 -- components/diagnosis/HypothesisList.tsx | 56 -------- components/diagnosis/P5Canvas.tsx | 128 ------------------ 5 files changed, 242 deletions(-) delete mode 100644 components/diagnosis/Hypothesis.module.css delete mode 100644 components/diagnosis/Hypothesis.tsx delete mode 100644 components/diagnosis/HypothesisList.module.css delete mode 100644 components/diagnosis/HypothesisList.tsx delete mode 100644 components/diagnosis/P5Canvas.tsx diff --git a/components/diagnosis/Hypothesis.module.css b/components/diagnosis/Hypothesis.module.css deleted file mode 100644 index 6057939..0000000 --- a/components/diagnosis/Hypothesis.module.css +++ /dev/null @@ -1,14 +0,0 @@ -.hypo_textbox { - width: 100%; - height: 75%; - margin: 10px 0; - padding: 10px; - box-sizing: border-box; - } - - .hypo_container{ - margin: 5px; - padding: 10px; - background: lightgray; - height: 35vh; -} \ No newline at end of file diff --git a/components/diagnosis/Hypothesis.tsx b/components/diagnosis/Hypothesis.tsx deleted file mode 100644 index c1717af..0000000 --- a/components/diagnosis/Hypothesis.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import React, { useState } from 'react'; -import styles from './Hypothesis.module.css'; - -interface HypothesisProps { - hypoData: { title: string; content: string }; - setHypoContent: (content: string) => void; - onDelete: () => void; -} - -const Hypothesis: React.FC = ({ hypoData, setHypoContent, onDelete}) => { - - const handleHypoChange = (event: React.ChangeEvent) => { - setHypoContent(event.target.value); - }; - - return ( -
        -

        {hypoData.title}

        - -